在主线程又Handler处理消息出现时这样写会有警告
private Handler handler = new Handler(){
@Override
public void handleMessage(Message msg) {
switch (msg.what){
case UPDATE_TEXT :
text.setText("Nice to meet you!");
break;
default:
break;
}
}
};
然后这段代码被黄黄的颜色包围--警告
有人说:提示你,这块有内存泄露的危险,handler最好声明为static的,里面对外部类,使用若引用
加上
@SuppressLint("HandlerLeak")可以消除警告。