Set SearchView clear button color

后端 未结 5 1194
粉色の甜心
粉色の甜心 2021-01-11 11:17

I am creating a searchview in the toolbar using onCreateOptionsMenu, but can\'t get the clear X button to initially be white. It becomes white when

5条回答
  •  萌比男神i
    2021-01-11 12:15

    Found a solution. However, interested in better ones.

    Downloaded the "clear button" image from https://www.google.com/design/icons/#ic_clear in 24pt white and added this code to the end of onCreateOptionsMenu

        // Does help!
        ImageView searchClose = (ImageView) searchView.findViewById(android.support.v7.appcompat.R.id.search_close_btn);
        searchClose.setImageResource(R.drawable.ic_clear_white_24dp);
    

提交回复
热议问题