2016-09-09 116 views
0

我創建了一個非常基本的自定義listview,但正如您在圖像中看到的那樣,項目之間有很大的空間。 我不知道我的錯在哪裏。自定義列表視圖中的項目之間的空間

我的XML:

<RelativeLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent"> 
    <CheckBox 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:id="@+id/list_item_crime_solved_checkBox" 
    android:padding="4dp" 
    android:layout_alignParentRight="true" /> 
    <TextView 
    android:id="@+id/list_item_crime_title_TextBox" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_toLeftOf="@+id/list_item_crime_solved_checkBox" 
    android:textStyle="bold" 
    android:padding="4dp" 
    tools:text="Crime Title"/> 
    <TextView 
    android:id="@+id/list_item_crime_date_TextBox" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_toLeftOf="@+id/list_item_crime_solved_checkBox" 
    android:layout_below="@+id/list_item_crime_title_TextBox" 
    android:padding="4dp" 
    tools:text="Crime Date"/> 
    </RelativeLayout> 
+0

哪裏有照片? – Rodriquez

+0

圖像在哪裏?如果要刪除間距,請嘗試刪除填充並檢查父級佈局是否有額外的邊距或填充。 –

+0

將relativeLayout的高度從match_parent更改爲wrap_content – Amir

回答

0

我想你已經張貼在這裏的佈局是用來爲膨脹的list_view每個項目。因此,請將相對佈局的layout_height設置爲wrap_content

相關問題