0

我在 GridView 中有 04 个元素,在 Grid 之后我有一个空白空间,并且在其他分辨率下,空白空间更大。(我有其他 Grid 和 Listviews 有同样的问题)。

我该如何解决这个问题?

XML1:

    <GridView
    android:id="@+id/gridSkills"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_below="@+id/tableRowSpecialization"
    android:numColumns="1"
    android:smoothScrollbar="true"
    android:listSelector="@null">
</GridView>

XML2:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relativeLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg_list_item_wrap" >

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerVertical="true"
    android:paddingLeft="7dp"
    android:layout_marginRight="8dp"
    android:src="@drawable/mage_icon">
 </ImageView>

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/title"
    android:layout_toRightOf="@+id/imageView1"
    android:paddingTop="4dp"
    android:textColor="#000000"
    android:singleLine="true"
    android:textStyle="bold"
    android:textSize="22sp" />

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/description"
    android:layout_toRightOf="@+id/imageView1"
    android:layout_below="@+id/textView1"
    android:textColor="#000000"
    android:textStyle="bold"
    android:paddingRight="1dp"
    android:paddingBottom="5dp"
    android:textSize="12sp"/>

图片:http ://s9.postimg.org/8pl76m19b/Untitled_1.jpg

4

1 回答 1

0

相对布局的宽度和高度应该是 fill_parent :尝试:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bg_list_item_wrap" >

//
于 2014-02-12T01:25:50.687 回答