新Json数据在获得新数据后不会消失

时间:2017-04-07 18:30:47

标签: android json

我正在尝试通过单击按钮从我的网站获取json数据当我通过单击我接收数据的按钮获取数据时,当我再次单击按钮时它不会删除之前获取的旧数据我的代码,我还附上了我正在接收的截图

struct

enter image description here

2 个答案:

答案 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");