android GridView问题显示行

时间:2016-01-25 17:41:18

标签: android gridview

我正在使用gridView,每个项目在页脚中都有一个图像和一个TextView。

所有图片都有相同的尺寸,因此我根据需要使用match_parent或wrap_content。

但是屏幕上只显示了一行半的项目,它会滚动,这很完美,但我想显示两行,然后滚动。

此外,当我在小型设备中运行应用程序时,只显示1行,我想总是显示2行。

我尝试使用此example,但它对我不起作用,因为停止滚动。

这里,我的一些代码XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg_app">
<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/black"
    android:id="@+id/header"
    android:padding="10dp">
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/icon_back"
        android:src="@drawable/ic_back" />
</RelativeLayout>
<com.xetux.util.ExpandableHeightGridView
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:gravity="center"
    android:horizontalSpacing="15dp"
    android:isScrollContainer="true"
    android:numColumns="3"
    android:padding="10dp"
    android:id="@+id/family_grid_view"
    android:layout_below="@+id/header"
    android:verticalSpacing="15dp"/>
<!--<GridView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="10dp"
    android:id="@+id/family_grid_view"
    android:horizontalSpacing="15dp"
    android:verticalSpacing="15dp"
    android:layout_below="@+id/header"
    android:numColumns="3"/>-->
</RelativeLayout>

和每个项目XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/family_image"
    android:background="@drawable/bg_family">
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/black_transparency"
        android:text="FAMILIA"
        android:gravity="center"
        android:id="@+id/family_name"
        android:padding="10dp"
        android:layout_alignParentBottom="true"
        android:textColor="@color/white"
        android:textSize="15sp"/>
</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

我认为你的图片尺寸很大。您可以签出支持多屏幕教程。尝试将小图片用于小屏幕。