使用EditText的drawableRight作为锚点

时间:2016-10-22 16:20:19

标签: android android-edittext

我想使用drawableRight EditText作为锚点视图。
但是没有任何方法可以获得drawableRight

有没有办法实现这个目标?

1 个答案:

答案 0 :(得分:0)

以编程方式:

edt.setCompoundDrawablesRelativeWithIntrinsicBounds(0, R.drawable.ic_right, 0, 0);

edt.setCompoundDrawablesWithIntrinsicBounds(null, null, getResources().getDrawable(android.R.drawable.ic_right), null);

XML:

android:drawableRight="@drawable/ic_right"