How to change the text color of dropdown in an AutoCompleteTextView?

前端 未结 4 1852
难免孤独
难免孤独 2021-01-05 12:32

How can I change the text color in dropdown menu of an AutoCompleteTextView? Or how can I change the background color of a dropdown, by default dropdown\'s back

4条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-05 13:01

    While it might be tricky to change the text color. It is easy to change the background color of the drop down menu

    AutoCompleteTextView searchView = ... 
    searchView.setDropDownBackgroundDrawable(new ColorDrawable(context.getResources().getColor(R.color.colorId)));
    

提交回复
热议问题