我正在创建一个GridLayout,里面有许多按钮。
我希望GridLayout的宽度与设备屏幕匹配,但我不知道是否应该管理GridLayout的宽度或GridLayout内部按钮的宽度。
我动态地向GridLayout添加按钮。有时按钮可能需要比屏幕给出的空间更多的空间!这就是为什么我不知道如何管理它。
答案 0 :(得分: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>