我在HorizontalScrollView
中有ListView
,除初始加載外,它工作得很好。我從Web服務加載列表視圖的數據,所以我創建了一個線程來做到這一點。獲得數據後,我只需撥打_myListAdapter.notifyDataSetChanged();
,數據就會在ListView
中可見。但如果ListView
遠離屏幕,則包含HorizontalScrollView
將自動滾動以使此ListView
可見。如何在不將ListView
滾動到當前視圖的情況下撥打notifyDataSetChanged
?Android中的HorizontalScrollView中的ListView
這裏是我怎麼有我的佈局XML文件中的一個想法:
<HorizontalScrollView
android:id="@+id/my_scrollview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbars="none">
<LinearLayout android:id="@+id/my_layout"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:orientation="horizontal">
<ListView android:id="@+id/my_list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1" />
</LinearLayout>
</HorizontalScrollView>
不適合我...列表垂直顯示 – Farhan 2012-02-22 13:31:41