1

SimpleAdapter を拡張するカスタム アダプターを使用して ListView を作成しました。5番目のアイテムはピンクです。上下にスワイプすると、5 番目のアイテムと同じ背景色のアイテムがランダムに表示されます。
私にはとても奇妙に思えますが、それはなぜですか?

スクリーンショット:
スクリーンショット 1 : 起動直後のアプリ
スクリーンショット 2 : 数回上下にスワイプした後のアプリ

ファイル:
MainActivity.java:

package com.example.test;

import java.util.ArrayList;
import java.util.List;

import android.app.ListActivity;
import android.os.Bundle;
import android.widget.ListAdapter;

public class MainActivity extends ListActivity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        List<Car> cars = getData();
        ListAdapter adapter = new CarListAdapter(this, cars, android.R.layout.simple_list_item_2, new String[] {
                Car.KEY_MODEL, Car.KEY_MAKE }, new int[] { android.R.id.text1, android.R.id.text2 });
        this.setListAdapter(adapter);
    }

    private List<Car> getData() {
        List<Car> cars = new ArrayList<Car>();
        for(int i = 0; i < 15; i++) {
            cars.add(new Car("Car "+i, i+""));
        }
        return cars;
    }
}



CarListAdapter.java:

package com.example.test;

import java.util.List;
import java.util.Map;

import android.content.Context;
import android.view.View;
import android.view.ViewGroup;
import android.widget.SimpleAdapter;

public class CarListAdapter extends SimpleAdapter {
    private List<Car> cars;
    private int[] colors = new int[] { 0x30ff2020, 0x30ff2020, 0x30ff2020 };

    @SuppressWarnings("unchecked")
    public CarListAdapter(Context context,
            List<? extends Map<String, String>> cars, int resource,
            String[] from, int[] to) {
        super(context, cars, resource, from, to);
        this.cars = (List<Car>) cars;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View view = super.getView(position, convertView, parent);

        if (position == 5) {
            int colorPos = position % colors.length;
            view.setBackgroundColor(colors[colorPos]);
        }

        return view;
    }

}



Car.java:

package com.example.test;

import java.util.HashMap;

public class Car extends HashMap<String, String> {
    private static final long serialVersionUID = 12872473L;
    public String make;
    public String model;

    public static String KEY_MAKE = "make";
    public static String KEY_MODEL = "model";

    public Car(String make, String model) {
        this.make = make;
        this.model = model;
    }

    @Override
    public String get(Object k) {
        String key = (String) k;
        if (KEY_MAKE.equals(key))
            return make;
        else if (KEY_MODEL.equals(key))
            return model;
        return null;
    }
}



activity_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >

    <ListView android:id="@android:id/list" android:layout_width="fill_parent"
        android:layout_height="fill_parent" android:visibility="visible"/>

</LinearLayout>
4

2 に答える 2

0

getView では、他のケースを処理しませんでした (5 に等しくない場合):

  if (position == 5) {
            int colorPos = position % colors.length;
            view.setBackgroundColor(colors[colorPos]);
        }
  else view.setBackgroundColor(defaultColor);

その理由は、古いビューを再利用するためです。

また、 android:cacheColorHint="#00000000" を使用する必要があります。これに関する記事は次のとおりです。 http://www.curious-creature.org/2008/12/22/why-is-my-list-black-an-android-optimization/

于 2013-06-08T22:16:56.233 に答える