我试图在Android中创建Tria游戏。 我创建了一个包含3行和3列的网格布局。 在细胞内有9个方形的imageViews。 我想占用网格布局的所有空间,图像必须具有相同的尺寸。 我怎么能这样做?
有布局
<GridLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:columnCount="3"
android:rowCount="3">
这是imageView的样本
<ImageView
android:id="@+id/imageView9"
android:layout_width="48dip"
android:layout_height="48dip"
app:srcCompat="@drawable/android" />
(48dip用于实验)
答案 0 :(得分:1)
而不是给出固定的宽度和高度给出的重量
android:layout_weight="1"