Problem with EditText background (android)

后端 未结 8 1504
执笔经年
执笔经年 2020-12-09 00:14

I have a problem with EditText background like this



        
8条回答
  •  长情又很酷
    2020-12-09 00:28

    I had to use SRC_ATOP for it to work for me

    mEditText.getBackground().setColorFilter(Color.RED, PorterDuff.Mode.SRC_ATOP);
    

提交回复
热议问题