可选择显示错误的项目(使用simpleCursor +自定义布局)

时间:2012-12-22 07:11:59

标签: android listview

我的自定义列表视图中出现问题,当我搜索列表视图的内容时,似乎显示选择了错误的项目。 (查看下面的截图,你会理解)

enter image description here enter image description here enter image description here

  1. 使用名称aa搜索并选择两行(AABBCCC和AABC)

  2. 我用Na搜索但没有选择行(Jana和Nathan)。但它显示为已选中。

  3. 删除了所有搜索项,删除搜索后我没有选择任何行。它应该显示两行(AABBCC和AABC),但它显示错误的行Jana。

  4. 我不知道如何覆盖上述行为。我必须根据_rowid而不是位置来确认联系。

    哪个班级会跟踪列表中所选的项目?如何覆盖上述行为??

    它有两行名称和编号。 我已经定制了我的布局(下面的代码),它实现了可检查。

    Search Name(EditText)        [Done Btn]
    ---------------------------------------
    Contact_name_1         
    Phone_no
    ---------------------------------------
    Contact_name_2         
    Phone_no2
    ---------------------------------------
    Contact_name_3         
    Phone_no3
    ---------------------------------------
    

    带有可检查项目的自定义布局..

    public class CustomCheckableLists extends RelativeLayout implements Checkable {
    
     private Checkable mCheckable;
    
    public CustomCheckableLists(Context context) {
        super(context);
    }
    
    public CustomCheckableLists(Context context, AttributeSet attrs)
    {
        super(context,attrs);
    }
    
    public boolean isChecked() {
        return mCheckable == null ? false : mCheckable.isChecked();
        //return false;
    }
    
    public void setChecked(boolean checked) {
        if(mCheckable != null)
            mCheckable.setChecked(checked);
    
    
    }
    
    public void toggle() {
         if(mCheckable != null)
                mCheckable.toggle();
    }
    
    @Override
    protected void onFinishInflate() {
        super.onFinishInflate();
    
        //Find items id..
    
        Log.w("onFinishInflate","onFinishInflate");
    
        // Find Checkable child
        int childCount = getChildCount();
        for (int i = 0; i < childCount; ++i) {
            View v = getChildAt(i);
            if (v instanceof Checkable) {
                mCheckable = (Checkable) v;
                break;
            }
        }
    }
    

    自定义XML布局

    <CustomCheckableLists
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="?android:attr/listPreferredItemHeight"
        android:gravity="center_vertical" 
          android:orientation="horizontal"
        >
    
        <TextView 
        android:id="@+id/id"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="name" 
        android:visibility="invisible"
        />
    
        <TextView 
        android:id="@+id/text1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="nuoo" 
        />
    
        <CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/phonenu"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:checkMark="?android:attr/textCheckMark"
        android:gravity="center_vertical"
        android:paddingLeft="3dp"
        android:paddingRight="6dp"
        android:paddingTop="25dip"
        />
    
    </CustomCheckableLists>
    

    联系活动类

        String[] columns = new String[] {
                ContactsContract.Contacts._ID,
                ContactsContract.Contacts.DISPLAY_NAME,
                    ContactsContract.CommonDataKinds.Phone.NUMBER
        };
    
        int[] to = new int[] {
                R.id.id,
                R.id.text1,
                R.id.phonenu
        };
    
        dataAdapter = new SimpleCursorAdapter(this, R.layout.custom_checkable_item, cursor, columns, to);
        listView.setAdapter(dataAdapter);
    

    任何帮助表示赞赏。提前谢谢。

    修改

    每当用户搜索任何名称时,都会形成一个查询以返回搜索结果。 代码

     searchNameOrNumber = (EditText) findViewById(R.id.searchText);
        searchNameOrNumber.addTextChangedListener(new TextWatcher() 
        {
            public void onTextChanged(CharSequence searchterm, int start, int before, int count) {
                Log.w("Text Searched.. ", " " + searchterm);
                dataAdapter.getFilter().filter(searchterm.toString());
                //dataAdapter.notifyDataSetChanged();
            }
    
            public void beforeTextChanged(CharSequence s, int start, int count,
                    int after) {
            }
            public void afterTextChanged(Editable s) {
            }
        });
    
        dataAdapter.setFilterQueryProvider(new FilterQueryProvider() {
            public Cursor runQuery(CharSequence constraint) {
                Log.w("Searched Query..,", constraint.toString());
                );
    
    
                return getSearchedContacts(constraint.toString());
            }
        });
    
    
    public Cursor getSearchedContacts(String inputText)
    {
        Log.w("inputText",inputText);
            Uri uri = ContactsContract.CommonDataKinds.Phone.CONTENT_URI;
            String[] projection = new String[] {
                    ContactsContract.Contacts._ID, 
                    ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME,
                       ContactsContract.CommonDataKinds.Phone.NUMBER
            };
            String selection = ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME + " like '%" + inputText + "%'";
    
            Cursor people = getContentResolver().query(uri, projection, selection, null, null);
    
            int indexName = people.getColumnIndex(StructuredName.DISPLAY_NAME);
            int indexNumber = people.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER);
            int idIdx = people.getColumnIndexOrThrow(PhoneLookup._ID);
    
            if(!people.moveToFirst())
            {
                Log.w("No Cursor.., ","No cursor.., Cursor is empty..");
            }
    
            do {
                String id = people.getString(idIdx);
                String name   = people.getString(indexName);
                String number = people.getString(indexNumber);
                // Do work...
            } while (people.moveToNext());
    
            return people;
    
    
    }
    

1 个答案:

答案 0 :(得分:1)

您需要创建自定义适配器并跟踪其中的已检查项目。您看到此行为的原因是因为SimpleCursorAdapter正在回收视图,并且不知道如何处理已检查状态,只是设置文本标签,使得检查状态保持原样。

另一种看待此行为的方法是拥有多个屏幕项目,检查一些然后滚动,您还会注意到随机项目会在您滚动时被选中/取消选中。

您可以在this answer中查看有关如何使其正常运行的完整示例。

如果您使用此功能进行搜索,则每次过滤时都必须清除已检查位置列表。

相关问题