ฉันได้สร้างรายการเฉพาะซึ่งมีองค์ประกอบดังต่อไปนี้เพื่อสร้างรายการที่เลื่อนได้ที่มีทุกแถวที่มีรูปภาพทางด้านซ้ายและข้อความทางด้านขวา:
วิธีเริ่มต้นด้วยเค้าโครง "root":
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#C8C8C8"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:drawSelectorOnTop="false"
android:divider="#C8C8C8"
android:background="#C8C8C8"/>
</LinearLayout>
แล้วภายใน ListView ฉันวางรายการ "แถว" ต่อไปนี้:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="@drawable/bg_row"
>
<ImageView
android:layout_width="wrap_content"
android:paddingLeft="10px"
android:paddingRight="15px"
android:paddingTop="5px"
android:paddingBottom="5px"
android:layout_height="wrap_content"
android:src="@drawable/bg_image"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="5px"
android:paddingBottom="5px"
android:textSize="16sp"
android:textColor="#000000"
android:layout_gravity="center"
android:maxHeight="50px"/>
</LinearLayout>
ตราบใดที่หน้าจอแสดงแบบคงที่ (เหมือนไม่มีการเคลื่อนไหว) มันจะแสดงอย่างถูกต้อง แต่เมื่อฉันเริ่มเลื่อนดูรายการพื้นหลังของรายการแถว (ไอคอน "" ที่สามารถแสดงในรหัส) จะเป็น แสดงอย่างถูกต้อง แต่พื้นหลังของรูปแบบ "รูท" จะกลายเป็นสีดำสนิท ... เมื่อการเลื่อนหยุดพื้นหลังส่วนใหญ่จะกลับสีของมัน ... ในขณะที่ฉันทดสอบฉันยังเพิ่มองค์ประกอบTextView
ในรูทนั้นด้วย ด้วยพื้นหลังเดียวกันอันนี้จะกักตัวสีเมื่อรายการถูกเลื่อน ... ความคิดใด ๆ ที่ทำให้เกิดเหตุการณ์นี้ขึ้นและวิธีแก้ปัญหานี้ได้อย่างไร