0
我正嘗試在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是用於實驗)
在哪個代碼中? imageView或GridLayout?我不明白你的答案 – Rik99
父母元素和圖像視圖都在。 –