Android notifyDataSetChanged无效

时间:2015-02-27 09:16:54

标签: android listview android-arrayadapter notifydatasetchanged

我有一个适配器,它使用来自TreeMap的数据填充带有2个TextView的ListView。 当用户从ListView添加或删除数据时,应刷新视图。

所以这是我的适配器:

public class MyAdapter extends BaseAdapter {
    private final ArrayList mData;

    public MyAdapter(Map<String, String> map) {
        mData = new ArrayList();
        mData.addAll(map.entrySet());
    }

    @Override
    public int getCount() {
        return mData.size();
    }

    @Override
    public Map.Entry<String, String> getItem(int position) {
        return (Map.Entry) mData.get(position);
    }

    @Override
    public long getItemId(int position) {
        // TODO implement you own logic with ID
        return 0;
    }

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

        if (convertView == null) {
            result = LayoutInflater.from(parent.getContext()).inflate(R.layout.my_adapter_item, parent, false);
        } else {
            result = convertView;
        }
    Map.Entry<String, String> item = getItem(position);

    // TODO replace findViewById by ViewHolder
    ((TextView) result.findViewById(android.R.id.text1)).setText(item.getKey());
    ((TextView) result.findViewById(android.R.id.text2)).setText(item.getValue());

    return result;
}}

因为我想从对话框和我读到的另一个问题更新视图,所以需要从UIThread调用notifyDataSetChanged()我将notifyDataSetChanged()放入 Runnable。这是它:

Runnable run = new Runnable(){
        public void run(){
            Log.v("in the Runnable: ", String.valueOf(colorHashMap));
            adapter.notifyDataSetChanged();
        }
    };

这就是在对话框中如何调用Runnable:

DefaultColorActivity.this.runOnUiThread(run);

但无论我做什么或做什么,List都没有获得更新。我需要关闭并重新打开活动以获取新列表。

4 个答案:

答案 0 :(得分:2)

在您的adapter中创建一个方法,如:

 public void updateList(){
   notifyDataSetChanged() 
 }

并在您想要刷新列表时调用此方法

答案 1 :(得分:0)

从Adapter类(在getView()方法中)调用notifyDataSetChanged()方法,该方法在删除项目后扩展BaseAdapter。

答案 2 :(得分:0)

首先,您必须在地图中进行更改(适配器的数据源)。并使用Handler类(Android OS Thread)来运行这样的线程

    Handler handler=new Handler();
    handler.post(run);

答案 3 :(得分:0)

你无法创建列表对象。

只需在列表中创建参考和签名列表

在适配器类中删除此语句

mData = new ArrayList();