如何在选项卡中刷新Listview

时间:2014-09-04 06:26:26

标签: android listview android-fragments android-actionbar

我想在操作栏活动中切换标签时刷新列表视图。

我试过

.setOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() {
    @Override
    public void onPageSelected(int position) {
        actionBar.setSelectedNavigationItem(position);
        Intent in = new Intent(Message.this,
            DataBaseServices.class);
        startService(in);//this will add the new entries in database
        mAdapter.notifyDataSetChanged();
    }
});

但它没有用。同样在片段类中,我调用了listviewadapter.notifyDataSetChanged()listview.notiffyAll(),但这也无效。

请帮帮我。

0 个答案:

没有答案