прокрутка списка меняет цвет фона представлений элементов (simpleadapter) - PullRequest
0 голосов
/ 17 марта 2019

У меня проблема со списком и simpleadapter.Я изменяю цвет фона представлений некоторых строк, когда впервые listview simpleadapter связывается.проблема в том, что когда я прокручиваю listview, он меняет цвет фона в случайном порядке.Я действительно не понимаю, что здесь происходит.Я использую переменную (colorDone), чтобы проверить, привязан ли уже просмотр списка, поэтому избегайте повторного изменения цвета (в методе simpleadapter getView), и я устанавливаю эту переменную в true в методе onLayoutChange при первой загрузке listview.Я ставлю точку останова в методе getView после coloringDone, если он не срабатывает.

мой элемент lisview:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="end"
    android:orientation="horizontal">



    <com.toptoche.searchablespinnerlibrary.SearchableSpinner
        android:id="@+id/person_spinner2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />


    <TextView
        android:id="@+id/Receiver_Name"
        android:layout_width="190dip"
        android:layout_height="wrap_content"
        android:gravity="right"
        android:textAlignment="gravity" />

    <TextView
        android:id="@+id/Asset_Name"
        android:layout_width="190dip"
        android:layout_height="wrap_content"
        android:gravity="right"
        android:textAlignment="gravity" />


</LinearLayout>

мой простой адаптер:

public class AssetSimpleAdapter extends SimpleAdapter {
HashMap<String, String> map = new HashMap<String, String>();
public AssetSimpleAdapter(Context context, List<? extends Map<String, String>> data,
                          int resource, String[] from, int[] to) {
    super(context, data, resource, from, to);
    mContext = context;
}

Context mContext;

@Override
public View getView(int position, View convertView, ViewGroup parent) {

    View view = super.getView(position, convertView, parent);



    if (!((MainActivity) mainActivity).coloringDone && some other conditions) {


            ((TextView) ((LinearLayout) view).findViewById(R.id.Asset_Name)).setBackgroundColor(mContext.getResources().getColor(R.color.red));
            ((TextView) ((LinearLayout) view).findViewById(R.id.Receiver_Name)).setBackgroundColor(mContext.getResources().getColor(R.color.red));




    }


    return view;

}

}

и MainActivity:

public boolean coloringDone = false;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    mainActivity = this;

  ...

 tagListVU.setAdapter(adapter);
    tagListVU.deferNotifyDataSetChanged();
    tagListVU.addOnLayoutChangeListener(new View.OnLayoutChangeListener() {

        @Override
        public void onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom) {
            tagListVU.removeOnLayoutChangeListener(this);


               coloringDone = true;

        }
    });

Редактировать: случайное изменение цвета означает, что некоторые строки становятся красными, а некоторые - белым

1 Ответ

0 голосов
/ 17 марта 2019

Наконец я решил проблему.Я изменил адаптер на ArrayAdapter, но проблема все та же, поэтому проблема не в типе адаптера.Проблема решена путем добавления условия else и изменения цвета фона представлений в белый в методе getView адаптера (без необходимости использования переменной окраски):

   if (some other conditions) {

    ((TextView) ((LinearLayout) view).findViewById(R.id.Asset_Name)).setBackgroundColor(mContext.getResources().getColor(R.color.red));
    ((TextView) ((LinearLayout) view).findViewById(R.id.Receiver_Name)).setBackgroundColor(mContext.getResources().getColor(R.color.red));

}
else{

    ((TextView) ((LinearLayout) view).findViewById(R.id.Asset_Name)).setBackgroundColor(mContext.getResources().getColor(android.R.color.white));
    ((TextView) ((LinearLayout) view).findViewById(R.id.Receiver_Name)).setBackgroundColor(mContext.getResources().getColor(android.R.color.white));

}
...