本文介绍了如何编程设置drawableRight在Android EDITTEXT?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是知道的设置drawableRight XML格式。但我需要做programetically,因为它是改变按一定的条件。
I know about set drawableRight in XML. but i required to do it programetically because it is change as per some condition.
推荐答案
您可以使用下面的功能:
You can use the function below:
editText.setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.drawableRight, 0);
相应的绘制位置PARAMS的顺序是:左,上,右,下
The order of params corresponding to the drawable location is: left, top, right, bottom
这篇关于如何编程设置drawableRight在Android EDITTEXT?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!