在ViewPager中更新列表视图的正确方法?

时间:2012-09-04 04:48:11

标签: java android android-fragments android-viewpager viewpagerindicator

我的应用程序中的片段中有一个ViewPager。在ViewPager中,我有6个列表视图,它们从中央数据源(一个Schedule,每个列表视图然后从中拉出列表)中提取数据。现在,我正在尝试通过更改存储在我的PagerAdapter类中的计划来更新此计划对象,然后将作为适配器的ArrayAdapter更新到所有列表视图。切换到一个列表视图时,将使用正确的数据创建新的数组适配器。

不幸的是,这根本不起作用。我在应用程序生命周期的任何时候都看不到任何数据。所以我假设我在将数据连接到ViewPager时做了一些根本性的错误...

我一直在网上,阅读所有碎片的东西,很多视图寻呼机的东西...... 有谁知道这样做的正确方法?

继承我的DayAdapter(ViewPagerADapter)

的代码
public final class DayAdapter extends PagerAdapter {

    //~Data Fields----------------------------------------//
    /**
     * The list adapter that the current list is being handed to.
     */
    private Schedule schedule;
    /**
     * The current index of the day that is to be displayed.
     */
    private int currentIndex;
    /**
     * ArrayAdpter to be used to connect data to all of the list views.
     */
    private ArrayAdapter<Course> adapter;

    //~Constructors---------------------------------------//
    /**
     * Constructor for the DayAdapter implementation of PagerAdapter. Takes in a
     * Schedule object which is to be the data backing of the views displayed.
     * 
     * @param theSChedule the Schedule object that is the backing for the ListViews.
     */
    public DayAdapter(Schedule theSchedule) {

        schedule = theSchedule;
        currentIndex = schedule.getTodayIndex();
    }

    //~Methods--------------------------------------------//
    public void setSchedule(Schedule theSchedule) {

        schedule = theSchedule;

        adapter.clear();
        adapter.add(schedule.getDay(currentIndex).getList().get(0));
        adapter.notifyDataSetChanged();
    }

    @Override
    public Object instantiateItem(ViewGroup container, int index) {

        LayoutInflater inflater = (LayoutInflater) container.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View layout = inflater.inflate(R.layout.schedule_list_view, null);

        ListView view = new ListView(container.getContext());

        adapter = new ArrayAdapter<Course>(container.getContext(), 
                R.layout.list_view_child, schedule.getDay(index).getList());
        view.setAdapter(adapter);

        //TEST CODE!!!! This does not yield any sort data items in the list views!?
        adapter.add(new Course("test", "test", "test", "test", "test", "test", "test"));

        currentIndex = index;

        ((ViewPager) container).addView(layout);

        return layout;
    }

    @Override
    public void destroyItem(ViewGroup container, int position, Object object) {

        ViewPager pager = (ViewPager) container;
        View view = (View) object;

        pager.removeView(view);
    }

    /**
     * Gets the pageTitle, which is the name of the day that is at position.
     * 
     * @param position the index of the day selected.
     * @return the name of the day the index refers to.
     */
    @Override
    public CharSequence getPageTitle(int position) {
        return schedule.getDay(position).getThisDay();
    }

    @Override
    public int getCount() {
        return 6;
    }

    @Override
    public boolean isViewFromObject(View view, Object object) {
        return view == object;
    }
}

2 个答案:

答案 0 :(得分:3)

如果这是instantiateItem方法的完整代码,那么您在列表中看不到任何数据是正常的。您为名为R.layout.schedule_list_view的布局文件(您最有可能拥有ListView)进行了充气,​​并使用相同的instantiateItem方法创建独立 {{ 1}}您设置数据的小部件。由于数据绑定到不在布局文件中的ListView,因此您看不到任何内容,因为原始ListView仍为空。

解决方案是在ListView上设置数据,如果您在那里设置了ListViewR.layout.schedule_list_view),或者将创建的ListView数据添加到膨胀布局(layout(这是View,因此您希望将其投射到ViewGroupViewGroup的子类)。

答案 1 :(得分:0)

尝试更改现有适配器中的数据,而不是使用新数据创建新适配器。

  1. 获取与适配器关联的集合。
  2. 根据需要修改集合(不应创建新的集合实例。您可以清除集合并添加新内容或更新集合。)
  3. 调用适配器的notifyDataSetChanged()。
  4. 希望这会奏效...... :)