自动页面刷新/重新加载功能android

时间:2014-09-18 02:33:04

标签: android refresh android-fragmentactivity android-listfragment page-refresh

我想每隔20分钟在所有页面的android项目中执行自动重装功能。能否请您告诉我使用以下功能在后台自动每20分钟运行的最佳方式。我搜索并发现必须设置AlarmManager.setRepeating()。能不能请你确认一下。此外,请告知是否要正确调整以下代码以执行页面重新加载

@Override
protected Void doInBackground(Void... nope) {
    try {
        // Set a time to simulate a long update process.
        Thread.sleep(2000);

        return null;

    } catch (Exception e) {
        return null;
    }
}

@Override
protected void onPostExecute(Void nope) {
    // Give some feedback on the UI.
    Toast.makeText(mCon, "List Refreshed!", 
            Toast.LENGTH_LONG).show();

    // Change the menu back
    ((MyWatchListActivity) mCon).resetUpdating();
}

此致 希瓦

1 个答案:

答案 0 :(得分:0)

这可能会有所帮助。看看下面这个链接 https://github.com/tubeber/PageAndPullToRefresh