Listview使用CursorAdapter子类中的数据复制项目

时间:2015-10-27 09:15:32

标签: android listview android-listview android-cursoradapter

我已经阅读了listview复制项目上的各种帖子,但似乎没有一个对使用CursorAdapter子类的listview有一个很好的解决方案。

尝试使用扩展CursorAdapter 的类,使用数据库表中的数据填充listview。

当我第一次启动listview 的活动时。列表项不重复。

  • 约瑟夫

对此活动的任何后续调用,以下内容都显示在我的列表视图中

我已阅读有关使用 ViewHolder 但我想从我的数据库每次调用此活动

的列表视图中的新数据副本

下面是我的列表适配器实现

 public class ChatAdapter extends CursorAdapter {

    private LayoutInflater cursorInfrlater;
    View view;

    public ChatAdapter(Context context,Cursor cursor, int flags){
        super(context,cursor,flags);
        cursorInfrlater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

    }

    @Override
    public void bindView(View view , Context context ,Cursor cursor){

        cursor.moveToFirst();
        while(!cursor.isAfterLast()){

            TextView name =(TextView) view.findViewById(R.id.sender_name);
            name.setText(cursor.getString(cursor.getColumnIndex(ChatHistory.COLUMN_NAME_SENDER_NAME)));
            TextView message =(TextView) view.findViewById(R.id.message);
            message.setText(cursor.getString(cursor.getColumnIndex(ChatHistory.COLUMN_NAME_MESSAGE)));
            TextView unread =(TextView) view.findViewById(R.id.counter);
            unread.setText(Integer.toString(cursor.getInt(cursor.getColumnIndex(ChatHistory.COLUMN_NAME_UNREAD_MESSAGES))));

            cursor.moveToNext();
        }

    }
    @Override
    public View newView(Context context,Cursor cursor, ViewGroup viewGroup){
        view = cursorInfrlater.inflate(R.layout.chat_row_layout,viewGroup,false);
        return view;
    }
}

实施我的活动

@Override
    protected void onCreate(Bundle savedInstance) {
        super.onCreate(savedInstance);
        setContentView(R.layout.chat_displayer);

        final ChatMessages cmc = new ChatMessages();
        cmc.deleteNotifications(this);
        ChatAdapter chatAdapter = cmc.getChatHistory(this);

        listView = (ListView) findViewById(R.id.listView);
        listView.setAdapter(chatAdapter);

我应该实施什么来删除这个重复列表项?

1 个答案:

答案 0 :(得分:2)

删除

 cursor.moveToFirst();
 while(!cursor.isAfterLast()){
 cursor.moveToNext(); 

来自bindView。该方法至少调用cursor.getCount()次,因此您无需绕过光标本身