왼쪽에 이미지가 있고 오른쪽에 일부 텍스트가 포함 된 모든 행이있는 스크롤 가능한 목록을 만들기 위해 다음 요소 중 특정 목록을 만들었습니다.
"루트"레이아웃으로 시작하려면
<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
하는 루트 요소 같은 배경으로, 이것은 목록이 스크롤 될 때 색상을 유지합니다 ... 왜 이런 일이 일어나고 있는지, 어떻게 해결할 수 있습니까?