如何在我的示例中设置高度和宽度gridview元素

时间:2014-02-08 14:32:51

标签: android gridview

我将申请作为here

一切都好,但我有一个问题。 在本例中如何设置gridview中元素的高度?我在RelativeLayout

中的gridview_row.xml尝试更改身高
android:layout_height="250dp" 

但身高没有变化。

1 个答案:

答案 0 :(得分:0)

将它们放入另一个布局并尝试

 <RelativeLayout    
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent">

    <RelativeLayout 
        android:layout_width="match_parent"
        android:layout_height="250dp">

        <ImageView></ImageView>
        <TextView></TextView> 
     </RelativeLayout>

</RelativeLayout>