ViewFlipper中的ListView

时间:2010-06-26 07:29:51

标签: android-widget

我在ViewFlipper中嵌套了2个ListView小部件:

<ViewFlipper android:id="@+id/flipper" android:layout_height="fill_parent" android:layout_width="fill_parent">
   <ListView android:id="@+id/bikeListView" android:layout_height="wrap_content" android:layout_width="fill_parent" />
   <ListView android:id="@+id/bikeComponentsListView" android:layout_height="wrap_content" android:layout_width="fill_parent" />
</ViewFlipper> 

我在自定义ListAdapter类的getView()方法中为2个ListView小部件添加了一个日志,我发现当我移动到ViewFlipper getView中的下一个或上一个视图时,即使ListView不可见,也会调用它。例如,当我从第一个ListView移动到第二个ListView时,会调用第一个的getView(),尽管会显示第二个ListView。

这是预期的行为吗?我的目的是使用ViewFlipper和onFling在ViewFlipper中来回移动,并以编程方式在ViewFlipper中添加许多ListView。

感谢您阅读我的问题。

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题,发现这是因为你的layout_height设置为wrap_content ....有关详情,请参阅此帖子:

http://www.anddev.org/view-layout-resource-problems-f27/multiple-calls-of-getview-in-arrayadapter-t16595.html