1

我很难弄清楚它,并且模拟器的缓慢增加了它。有人可以在这里给我一些指示..

我打算做的是推动这些盒子的宽度,通常发生的情况是按钮只是包裹起来并在右侧留下一个空白空间。这是我一直在修复的xml代码......

    <ScrollView
     android:layout_width="fill_parent"
     android:layout_height="150dp" >

      <TableLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:stretchColumns="1" >

        <TableRow>

            <Button
                android:id="@+id/bOne"
                style="?android:attr/buttonStyleSmall"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="Radio Buttons" />
        </TableRow>

        <TableRow>

            <Button
                android:id="@+id/bTwo"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="List View" />
        </TableRow>

        <TableRow>

            <Button
                android:id="@+id/bThree"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="Button" />
        </TableRow>

        <TableRow>

            <Button
                android:id="@+id/bFour"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="Button" />
        </TableRow>

        <TableRow>

            <Button
                android:id="@+id/bFive"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="Button" />
        </TableRow>
    </TableLayout>
    </ScrollView>
4

1 回答 1

0

在表格布局中,您有 android:stretchColumns="1" 列从 0 开始索引,因此请删除 strechcolumns 或将其值替换为 0。

于 2013-07-07T18:48:18.370 回答