Android Action Bar SearchView as Autocomplete?

前端 未结 7 1352
伪装坚强ぢ
伪装坚强ぢ 2020-11-28 04:00

I am using a SearchView in the Action Bar. I want to use autocomplete feature on the search view to get results from the database.

Is this possible? Or do I need to

7条回答
  •  执笔经年
    2020-11-28 04:35

    You can do this with a CursorAdapter via something like:

    MenuItem searchItem = menu.findItem(R.id.action_search);
    SearchView searchView = (SearchView) MenuItemCompat.getActionView(searchItem);
    
    searchView.setSuggestionsAdapter(adapter);
    

提交回复
热议问题