AutoCompleteTextView doesn't show dropdown when I press space after typing a complete word

前端 未结 4 868
囚心锁ツ
囚心锁ツ 2020-12-17 16:04

My main activity code:

// here you put all your data.
String[] dataArray = { \"Amit sharma Kumar\", \"Hisham Kumar Munner\",
        \"Vineet John Chaturvedi         


        
相关标签:
4条回答
  • 2020-12-17 16:20

    First of all, you don't need TextWatcher with AutoCompleteTextView because AutoCompleteTextView has its own method to watch text i.e. MyWatcher. You need to use :

    setThreshold(3);
    final String[] AndroidDesk= getResources().getStringArray(R.array.clothname_arrays);
    ArrayAdapter<String> My_arr_adapter= new ArrayAdapter<String>(getApplicationContext(),
                android.R.layout.simple_dropdown_item_1line,AndroidDesk);      
       cloths.setThreshold(1);
       cloths.setAdapter(My_arr_adapter);
       cloths.setOnItemClickListener(new OnItemClickListener() {
       public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,long arg3) {                               
       }
       });
    
    0 讨论(0)
  • 2020-12-17 16:32

    You don't need a Textwatcher, AutoCompleteTextView uses the Filter of the Adapter you set. The default adapter filters entries by calling toString() on them. Naturally, if the user enters a space, the values no longer match. To implement this custom behavior you shouldn't add a textwatcher but build a custom adapter. You can still extend ArrayAdapter or SimpleAdapter. You implement your custom filtering behavior (in your case a trim() call) by overwriting getFilter() and publishResults(). Here or here you can find examples on how to do that.

    0 讨论(0)
  • 2020-12-17 16:35

    I think there are problem in text watcher because auto complete text view did not need of text watcher because that auto listener event . you have to simple pass your array in to adapter instead of list. alAutoCompleteList ther are no any value in list. you had never add value in list.

    • either you have to do like : alAutoCompleteList.add("data one "); alAutoCompleteList.add("data two");

    • or pass dataArray to adapter. adapter1 = new ArrayAdapter(MainActivity.this, android.R.layout.simple_dropdown_item_1line,dataArray );

    • No need to use text watcher .

    0 讨论(0)
  • 2020-12-17 16:38

    First, is there any reason why you set that TextWatcher listener on the AutoCompleteTextView? If you did this to filter the data yourself you shouldn't do it(because the widget does this by default and your code is incorrect).

    When i search "sharma" and press a space after that. suggestions goes off. I want those suggestions to stay there.

    This is happening because of the adapter and the default Filter implementation which comes with it, elements that the AutoCompleteTextView uses under the hood to provide the values that you see in the drop down list. The default behavior for an ArrayAdapter is the one you see, you can find an explanation in this answer. The solution is to implement your own adapter with a filter that will search the whole adapter's row data for the filter string. I've taken the code of the ArrayAdapter class from the SDK and made a slight adjustment so the filtering doesn't break when inserting a space after a word. You can find the class here as the code is to big to post. Just copy the class in your project and use it as a normal ArrayAdapter:

    FilterWithSpaceAdapter<String> adapter1;
    //... 
    adapter1 = new FilterWithSpaceAdapter<String>(MainActivity.this,
                android.R.layout.simple_dropdown_item_1line, dataArray);
    
    0 讨论(0)
提交回复
热议问题