Android中动态刷新从服务器上获取的数据

前言:
之前在做项目的时候,有个需求是动态刷新从服务器上获取的数据,经查越资料后,决定采用Timer来做定时刷新数据功能。

用例:

Timer timer = new Timer();
timer.schedule(new TimerTask(){
@Override
public void run(){
Intent intent = new Intent(Test1.this,Test2.class);
startActivity(intent);
}
},3000);

注:参数1:TimerTask 参数2:定时时间,单位毫秒

把更新数据的代码放到run()中就可以了。

你可能感兴趣的:(Android)