静态ListView选项

时间:2017-02-15 12:35:41

标签: android listview

我想要达到这个清单:

enter image description here

这基本上是一个静态列表,其中包含用户可以单击的选项。有没有办法静态地实现这个,使用XML或类似的东西?以某种方式做常规列表视图程序 - 适配器,带有模型对象的项目列表 - 对我来说似乎很奇怪。

1 个答案:

答案 0 :(得分:0)

如果此列表始终相同,则它基本上只是四个堆叠的静态按钮。

然后,您可以使用垂直方向的LinearLayout并将按钮放在其中。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
</LinearLayout>