0
我有一個課程擴展了RelativeLayout
,在這個課程中我創建了一個Thread
。我的自定義RelativeLayout
現在用於ListView
。Android RelativeLayout線程
現在我的問題。在我的課堂實例化之後,我開始Thread
。現在用戶非常快地滾動ListView
。我可以在哪裏停止我的Thread
,因爲如果我的自定義RelativeLayout
超出範圍,它將不會被GC
編輯,因爲Thread
仍然存在。
這裏我的代碼存根...
private Thread mThread;
public class MyLayout() extends RelativeLayout {
public MyLayout(Context context) {
super(context);
mThread = new Thread(new Runnable...);
mThread.start();
}
}