《Android程式設計權威指南》9.4定製列表項P167頁一個小錯誤
*****閱讀此篇文章大約需[三分鐘],瞭解知識點[一個]*****
[更正]《Android程式設計權威指南》9.4定製列表項P167頁的小錯誤:

P167

P167
應將程式碼 android:layout_height="match_parent"改成android:layout_height="wrap_content"
不然會導致其內僅僅三個子view的內容卻佔了整個螢幕
//list_item_crime.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <CheckBox android:id="@+id/list_item_crime_solved_check_box" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:padding="4dp" android:text="CheckBox" /> <TextView android:id="@+id/list_item_crime_title_text_view" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_toLeftOf="@+id/list_item_crime_solved_check_box" android:padding="4dp" android:textStyle="bold" android:text="CrimeTitle" /> <TextView android:id="@+id/list_item_crime_date_text_view" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_toLeftOf="@+id/list_item_crime_solved_check_box" android:layout_below="@id/list_item_crime_title_text_view" android:padding="4dp" android:text="CrimeDate" /> </RelativeLayout>
Change to:arrow_down:
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content"> <CheckBox android:id="@+id/list_item_crime_solved_check_box" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:padding="4dp" android:text="CheckBox" /> <TextView android:id="@+id/list_item_crime_title_text_view" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_toLeftOf="@+id/list_item_crime_solved_check_box" android:padding="4dp" android:text="CrimeTitle" android:textStyle="bold" /> <TextView android:id="@+id/list_item_crime_date_text_view" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_below="@id/list_item_crime_title_text_view" android:layout_toLeftOf="@+id/list_item_crime_solved_check_box" android:padding="4dp" android:text="CrimeDate" /> </RelativeLayout>
按照書上來的效果:arrow_down:

一屏只顯示一個ViewHolder
Change to:arrow_down:

正常