使用ImageView

时间:2017-04-11 14:09:20

标签: android imageview

我有一个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);

0 个答案:

没有答案