Mam metodę z rozszerzeniem HandlerThread
. Wartość zostaje zmieniona wewnątrz Thread
i chciałbym zwrócić ją do test()
metody. Czy jest na to sposób?
public void test()
{
Thread uiThread = new HandlerThread("UIHandler"){
public synchronized void run(){
int value;
value = 2; //To be returned to test()
}
};
uiThread.start();
}