ListView FullScreen-Item Scroll Horizo​​ntal

时间:2016-11-18 13:24:46

标签: android android-layout listview

我正在使用从MySQL数据库填充的ListView,listview项的数量由数据库返回的行确定(记录更新时的更改)。

  • 我不想使用碎片
  • 每个ListView项目都有可点击的按钮(listView项目本身不可点击,只有它们上面的按钮)

我认为这就像为listview定义水平方向一样简单,但事实并非如此:

   <ListView
        android:id="@+id/listView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal"
         >
    </ListView>

这是我想要实现的目标: enter image description here

1 个答案:

答案 0 :(得分:2)

在这种情况下,您可以使用HorizontalScrollViewViewPager来达到预期的输出。

被修改

作为Thomas建议。您也可以使用RecyclerView