Fixed probable memory leak in ServerTestActivity
This commit is contained in:
parent
e01ad796cd
commit
0b29f27be4
@ -140,6 +140,17 @@ public class ServerTestActivity extends AppCompatActivity {
|
|||||||
mHandler.setViews(startTestBut, textViewTestInfo);
|
mHandler.setViews(startTestBut, textViewTestInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onDestroy() {
|
||||||
|
super.onDestroy();
|
||||||
|
|
||||||
|
if (mThread != null) {
|
||||||
|
mThread.interrupt();
|
||||||
|
mThread = null;
|
||||||
|
}
|
||||||
|
mHandler = null;
|
||||||
|
}
|
||||||
|
|
||||||
public static class ServerTestHandler extends Handler {
|
public static class ServerTestHandler extends Handler {
|
||||||
private Button startTestBtn = null;
|
private Button startTestBtn = null;
|
||||||
private TextView textViewTestInfo = null;
|
private TextView textViewTestInfo = null;
|
||||||
|
Loading…
Reference in New Issue
Block a user