Changing action bar searchview hint text color

后端 未结 18 1404
时光说笑
时光说笑 2020-12-12 21:47

How can I change the action bar search view hint text colour?

This question explains how to get the EditText when using ABS: Android ActionBar Customize Search View

18条回答
  •  悲哀的现实
    2020-12-12 22:21

    this worked for me :-)

     EditText seartext = searchView.findViewById(R.id.search_src_text);
        seartext.setTextColor(Color.WHITE);
        seartext.setHintTextColor(Color.GRAY);
    

提交回复
热议问题