处理程序和TextView更新问题

时间:2016-10-31 19:50:35

标签: android multithreading textview android-handler

我不明白在程序流程中如何使用处理程序来更新TextView。我正在使用像这样的简单代码进行测试

public class MainActivity extends AppCompatActivity {

TextView text;  
boolean isReady;  //boolean to check a new Message
String update;    //String to send to TextView



@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    text = (TextView) findViewById(R.id.textView);
    Handler handler = new MyHandler();            //defined down
    MyHandlerThread thr = new MyHandlerThread(handler);  //defined in other .class file
    thr.start();
    for(int i=0;i<100;i++){   //a simple for 
        if(i%2==0)
            thr.setMessage(i + ": Divisible for 2");
        else
            thr.setMessage(i+": Not Divisible for 2");
    }

}


private class MyHandler extends Handler { //inner class
    @Override
    public void handleMessage(Message msg) {
        Bundle bundle = msg.getData();
        if(bundle.containsKey("refresh")) {
            String value = bundle.getString("refresh");
            text.setText(value);
        }
    }
}}

这是线程代码

public class MyHandlerThread extends Thread {
private Handler handler;
private boolean isSent;
String text;
public MyHandlerThread(Handler handler) {
    this.handler = handler;
    isSent=false;
    text="";
}
public void run() {
    try {
        while(true) {
            if(isSent){
                notifyMessage(text);
                Thread.sleep(1000);
                isSent=false;
            }
        }
    }catch(InterruptedException ex) {}
}

public void setMessage(String str){
    text=str;
    isSent=true;
}

private void notifyMessage(String str) {
    Message msg = handler.obtainMessage();
    Bundle b = new Bundle();
    b.putString("refresh", ""+str);
    msg.setData(b);
    handler.sendMessage(msg);
}}

此代码只打印最后一个预期的字符串&#34; 99:2&#34不可分;

1 个答案:

答案 0 :(得分:1)

你只是调用你的线程setMessage的100倍,所以在你的线程循环有机会打印它们之前,文本会相互覆盖。

你应该在你的setMessage中实现一个队列,然后线程循环应该弹出队列中的下一个元素,打印它(通过Handler发送消息)然后休眠。如果队列中没有更多元素,只需循环直到有一个元素可用。