Changing the background color of searchview autocomplete dropdown

后端 未结 4 620
情话喂你
情话喂你 2021-02-04 14:47

I have a searchview with a content provider for custom suggestions, which are displayed in a dropdown. However, the dropdown background is dark while the text is black so it\'s

4条回答
  •  死守一世寂寞
    2021-02-04 15:45

    i think you should use

    SearchView.SearchAutoComplete autoCompleteTextView = (SearchView.SearchAutoComplete) searchView.findViewById(R.id.search_src_text);
    if (autoCompleteTextView != null) {
        autoCompleteTextView.setDropDownBackgroundDrawable(getResources().getDrawable(R.drawable.abc_popup_background_mtrl_mult));
    }
    

    this can set the SearchAutoComplete dropdown background to Light

提交回复
热议问题