Changing the background color of searchview autocomplete dropdown

后端 未结 4 641
情话喂你
情话喂你 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:30

    Simple solution

    int autoCompleteTextViewID = getResources().getIdentifier("search_src_text", "id", getPackageName());
    mSearchAutoCompleteTextView = mSearchView.findViewById(autoCompleteTextViewID);
    mSearchAutoCompleteTextView.setDropDownBackgroundResource(R.color.white);
    

提交回复
热议问题