我将申请作为here:
一切都好,但我有一个问题。
在本例中如何设置gridview中元素的高度?我在RelativeLayout
gridview_row.xml
尝试更改身高
android:layout_height="250dp"
但身高没有变化。
答案 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>