我在 XML 中有 EditText:android:drawableRight="@drawable/promotion_create_promotion_plus_icn"
当setError("sss")
改变drawableRight
。
我想什么setError(null)
时候drawableRight
回来drawable/promotion_create_promotion_plus_icn
XML:
<EditText
android:id="@+id/create_benefit_add_titale"
style="@style/promotion_create_promotion_add_title_bcg"
android:drawableRight="@drawable/promotion_create_promotion_plus_icn"
android:hint="@string/create_benefit_add_titale" />
在java中:
@Override
public void afterTextChanged(Editable s) {
((EditText) getCurrentFocus()).setError(null);
}
谁能帮我?