GridView,URL中的图像为2列

时间:2013-06-03 21:11:40

标签: android gridview density-independent-pixel

我正在使用背景GridView上的网址抓取的图片填充Thread。因此,在加载图像时,每个图像下方的TextView已经存在,但图像没有宽度或高度。问题是使用DP是如此混乱,我需要图像填充2列网格,我不知道哪个尺寸最适合它,在较低分辨率上看起来不大

1 个答案:

答案 0 :(得分:1)

如果您希望gridview有2列,只需使用stretchMode动态设置宽度。

<GridView
    android:id="@+id/gridview"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:stretchMode="columnWidth"
    android:numColumns="2" 
    />

如果您不希望gridview采用所有超视图的宽度,则可能需要将android:layout_width="match_parent"替换为其他值。