0

在我的活动中,我收到了存储在数据库中然后在列表中的消息。在我的场景中,活动不知道何时收到消息,因此列表保持未更新。请建议我如何刷新活动并保持活动活跃。谢谢。

4

2 回答 2

1

我必须更喜欢刷新列表视图的数据而不是刷新活动。但是,如果您认为刷新活动对您来说是必要的,那么以下代码可能会对您有所帮助。您可以使用将在一段时间后触发的计时器。

import java.util.Timer;
import java.util.TimerTask;

import android.app.Activity;
import android.os.Bundle;
import android.widget.Toast;

public class MainActivity extends Activity {
@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

private Timer RefreshActivity;

@Override
public void onResume() {
    super.onResume();
    RefreshActivity = new Timer();
    RefreshActivity.schedule(new TimerTask() {
        @Override
        public void run() {
            runOnUiThread(new Runnable() {
                public void run() {
                    refresh();
                }
            });
        }
    }, 10000, 10000); // updates each 10 secs
}

private void refresh() {
    Toast.makeText(this, "update", 1).show();
    //you can fetch data here and update the list if possible.

    //or just finish activity and then recreate the activity
    finish();
    startActivity(getIntent());
}

@Override
public void onPause() {
    RefreshActivity.cancel();
    super.onPause();
}
}
于 2013-09-14T20:08:35.980 回答
1

您可以通过以下方式刷新您的列表视图

myListView.invalidateViews();

并刷新您可以使用的活动

finish();
startActivity(getIntent());
于 2013-09-14T17:59:12.073 回答