0

我正在创建一个 GridLayout,其中包含许多按钮。

我希望 GridLayout 的宽度与设备屏幕相匹配,但我不知道是否应该管理 GridLayout 的宽度或 GridLayout 内按钮的宽度。

我动态地将按钮添加到 GridLayout。有时按钮可能需要比屏幕提供的空间更多的空间!这就是为什么我不知道如何管理它。

4

1 回答 1

0

如果您想要的是 GridLayout 以匹配设备宽度,我会将布局 XML 设置为:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".GridActivity" >

     <GridLayout
         android:id="@+id/button_grid"
         android:layout_width="fill_parent"
         android:layout_height="wrap_content" >
     </GridLayout> 

</RelativeLayout>
于 2013-02-06T14:32:52.173 回答