我的应用程序中的片段中有一个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;
}
}
答案 0 :(得分:3)
如果这是instantiateItem
方法的完整代码,那么您在列表中看不到任何数据是正常的。您为名为R.layout.schedule_list_view
的布局文件(您最有可能拥有ListView
)进行了充气,并使用相同的instantiateItem
方法创建独立 {{ 1}}您设置数据的小部件。由于数据绑定到不在布局文件中的ListView
,因此您看不到任何内容,因为原始ListView
仍为空。
解决方案是在ListView
上设置数据,如果您在那里设置了ListView
(R.layout.schedule_list_view
),或者将创建的ListView
数据添加到膨胀布局(layout
(这是View
,因此您希望将其投射到ViewGroup
或ViewGroup
的子类)。
答案 1 :(得分:0)
尝试更改现有适配器中的数据,而不是使用新数据创建新适配器。
希望这会奏效...... :)