这是我编写的示例 XML。我正在尝试制作一个垂直对齐的按钮列表,以及另外 2 列这样的按钮。所以总共会有3列。每列都可以垂直滚动。如何添加更多列并使它们可单独滚动?
我已经搜索并尝试了其他几种变体;我能达到的最接近的是tablelayout,但是垂直滚动似乎是不可能的!
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/table"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="*">
<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/button1"/>
<Button
android:id="@+id/button2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/button2"/>
<Button
android:id="@+id/button3"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/button3"/>
</TableLayout>