আমি একটি নির্দিষ্ট তালিকা তৈরি করেছি যা বাম দিকে চিত্র এবং ডানদিকে কিছু পাঠ্য সহ প্রতিটি সারি সহ একটি স্ক্রোলযোগ্য তালিকা তৈরি করতে নিম্নলিখিত উপাদানগুলির বাইরে রয়েছে:
একটি "মূল" লেআউট দিয়ে শুরু করতে:
<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>
এবং তারপরে তালিকার ভিউয়ের মধ্যে আমি নীচের "সারি" আইটেমটি রাখি:
<?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
সেই মূল-উপাদানটিতে একটি যুক্ত করেছি একই পটভূমির সাথে, তালিকাটি যখন স্ক্রোল করা থাকবে তখন এটি রঙটি আটকে রাখবে ... কেন এমন হচ্ছে এমন কোনও ধারণা, এবং কীভাবে এটি সমাধান করবেন?