android TextView setText not working

前端 未结 7 2068
被撕碎了的回忆
被撕碎了的回忆 2021-01-04 02:37

I know there are a lot of similar threads but I\'ve gone through them and still can\'t figure out the problem. My program reaches the Handler but it always returns the catc

7条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-04 03:12

    have you send a message? for example:

                Message message=new Message();
            message.what=1;
            mHandler.sendMessage(message);
    

提交回复
热议问题