我有一个 Activity 在 onStart() 方法中创建一个线程。Thread 用于通过 TCP 读取网络数据,并在 while 循环中具有阻塞网络读取方法,该方法在每次增量时检查布尔变量。
我的问题是,当使用返回键销毁 Activity 时,我将布尔循环控制变量的值设置为 false,但线程不会完成,因为它卡在阻塞网络方法上。
public class MyActivity extends Activity implements Runnable
{
Thread thread;
boolean loopControl;
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
}
protected void onStart()
{
super.onStart();
loopControl=true;
thread = new Thread(this);
thread.start();
}
public void run()
{
while(loopControl)
{
directories = (Vector<String>) TCPFunctions.inputStream.readObject();
}
}
protected void onDestroy()
{
super.onDestroy();
loopcontrol = false;
}
}
我该如何完成我想要的线程,因为当再次启动此 Activity 时它会产生问题。
实际上,每次活动启动时,它都会从服务器读取一些数据