答案 0 :(得分:0)
使用setText删除数据,并且每0.5秒执行一次代码就可以使用这样的处理程序。
new Timer().scheduleAtFixedRate(new TimerTask() {
@Override public void run() {
// Your code
getActivity().runOnUiThread(new Runnable() {
@Override
public void run() {
//You code
}
});
}
}, 0, 500);
使用处理程序:
final Handler mHandler=new Handler();
Runnable r = new Runnable() {
@Override
public void run() {
// Your Code
mHandler.postDelayed(this, 500);
}
};
mHandler.post(r);
答案 1 :(得分:0)
您需要致电textView.setText(Rate1 + " " + Rate2 + " \n");
将检索到的字符串添加到Textview中存在的现有字符串时,而不是textView.append(Rate1 + " " + Rate2 + " \n");