我使用從MySQL數據庫填充的ListView,listview項的數量由數據庫返回的行確定(記錄更新時更改)。ListView FullScreen-Item Scroll Horizontal
- 我不想用碎片
- 每個ListView項具有可點擊按鈕(ListView的項目本身將無法點擊,只對他們的按鈕會)
我以爲它會是一些簡單的定義爲ListView水平方向,但它並非如此:
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
>
</ListView>
你應該看看'RecyclerView'。這是組織列表項的新方法。另外,它很容易水平顯示。看看http://stackoverflow.com/questions/28460300/how-to-build-a-horizontal-listview-with-recyclerview –