Change Line Color of EditText - Android

前端 未结 9 1093
夕颜
夕颜 2020-12-16 02:13

Can I change the line color on EditText. When is active it has some greenish color.\"Image\"

Is it

9条回答
  •  借酒劲吻你
    2020-12-16 02:46

    Here you are:

    editText.getBackground().setColorFilter(getResources().getColor(R.color.white), PorterDuff.Mode.SRC_ATOP);
    

提交回复
热议问题