我有一个GridLayout,我正在以编程方式设置它的列数和行数。然后我想用imageView填充这些单元格。那么,我如何创建enought ImageViews来填充所有单元格呢?
这是我的GridLayout xml的一部分
<GridLayout
android:id="@+id/dgLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="20dp">
<ImageView
android:id="@+id/imageView2"
/>
</GridLayout>
这是我的活动类
中代码的一部分dgLayout.setColumnCount(dwInt);
dgLayout.setRowCount(dhInt);