簡體   English   中英

帶有 SimpleCursorAdapter 的 AutoCompleteTextView 不過濾

[英]AutoCompleteTextView with SimpleCursorAdapter does not filter

在我的應用程序中,我有一些使用 ArrayAdapter 的 AutoCompleteTextView 小部件。

private List<String> adapterList = new ArrayList<String>();
ArrayAdapter<String> dropdownAdapter;
dropdownAdapter = new ArrayAdapter<>(getContext(), R.layout.simple_dropdown_item, adapterList);
autoCompleteTextView.setAdapter(dropdownAdapter);

它工作得很好。 當我在視圖中輸入內容時,我會在下拉列表中看到以單詞開頭的結果。

我想使用另一個 AutoCompleteTextView 來執行此操作,但這次使用的是 SimpleCursorAdapter。

nameSearchCursor = dbHelper.getChecklistTabDataByChecklistId(outingId, checklistId, nameColumn);
NameSearch = root.findViewById(R.id.SearchNames);
String[] nsColumns = new String[]{nameColumn};
int[] nsTo = new int[]{R.id.simpleDropdownItem};
nameSearchCursorAdapter = new SimpleCursorAdapter(getContext(), R.layout.simple_dropdown_item,
        nameSearchCursor, nsColumns, nsTo, 0);
NameSearch.setAdapter(nameSearchCursorAdapter);

如果我開始在這個新視圖中輸入,下拉列表會出現並顯示整個列表,並且在我輸入時沒有任何變化。 不發生過濾。 我需要做些什么不同的事情(也許是為什么)才能讓 CursorAdapter 與這個 View 一起工作,而我在使用 ArrayAdapter 時不需要這樣做。 我已經搜索了這個站點並閱讀了開發人員文檔,一定有一些我沒有得到的東西。 請賜教。

這個網站讓我可以回答這個問題: http://www.outofwhatbox.com/blog/2010/11/android-simpler-autocompletetextview-with-simplecursoradapter/

這是我完成的代碼:

private void setUpNameSearch() {
    // Get AutoCompleteTextView
    nameSearchView = root.findViewById(R.id.SearchNames);
    // Define from/to info
    final String[] nsColumns = new String[]{nameColumn};
    final int[] nsTo = new int[]{R.id.simpleDropdownItem};
    // Create adapter. Cursor set in setFilterQueryProvider() below.
    nameSearchCursorAdapter = new SimpleCursorAdapter(getContext(), R.layout.simple_dropdown_item,
            null, nsColumns, nsTo, 0);
    // Set adapter on view.
    nameSearchView.setAdapter(nameSearchCursorAdapter);

    // OnItemClickListener - User selected value from DropDown
    nameSearchView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> listView, View view, int position, long id) {
            // Get the cursor. Positioned to the corresponding row in the result set.
            Cursor cursor = (Cursor) listView.getItemAtPosition(position);
            // Get the name selected
            String selectedName = cursor.getString(cursor.getColumnIndexOrThrow(nameColumn));
            // Do something with this value...
        }
    });

    // Set the CursorToStringconverter, to provide the values for the choices to be displayed
    // in the AutoCompleteTextview.
    nameSearchCursorAdapter.setCursorToStringConverter(new SimpleCursorAdapter.CursorToStringConverter() {
        @Override
        public CharSequence convertToString(Cursor cursor) {
            final String name = cursor.getString(cursor.getColumnIndexOrThrow(nameColumn));
            return name;
        }
    });

    // Set the FilterQueryProvider, to run queries for choices
    nameSearchCursorAdapter.setFilterQueryProvider(new FilterQueryProvider() {
        @Override
        public Cursor runQuery(CharSequence constraint) {
            Cursor cursor = dbHelper.getMatchingNames(outingId, checklistId, nameColumn,
                    (constraint != null ? constraint.toString() : null));
            return cursor;
        }
    });
}

我想使用 SQLite Cursor 復制 AutoCompeteTextView 的默認功能,結果發現 REGEXP 不完全受支持。 所以這個 StackOverflow 主題給了我 LIKE 解決方法。 SQLite LIKE 替代 REGEXP,匹配任何單詞的開頭

我希望這對其他人有幫助。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM