Auto refresh the activity

后端 未结 4 1176
走了就别回头了
走了就别回头了 2020-12-05 08:39

In my application I have a activity that displays contents from internet..... I just want to know how can I auto refresh the activity.....

Please suggest and provide

4条回答
  •  醉话见心
    2020-12-05 09:18

    You can use handler to do a loop process, like this:

    Handler handler = new Handler();
    Runnable refresh;
    

    In the first call time:

    refresh = new Runnable() {
        public void run() {
            // Do something
            handler.postDelayed(refresh, 5000);
        }
    };
    handler.post(refresh);
    

    Since you cannot call a non-final variable inside an annonymous class, you will have to declare refresh in the containing class.

提交回复
热议问题