我是android新手我刚刚实现了编辑文本,右侧有一个清晰的按钮,它工作正常,但我想在用户开始输入时显示这个清除按钮,但我不是想要在此编辑文本为空时显示此按钮。我的编辑文本的xml是。
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/editText"
android:background="@android:color/transparent"
android:hint="Email"
android:layout_marginTop="12dp"
android:layout_weight="1"
android:layout_below="@+id/view_divider_top_email"
android:layout_alignLeft="@+id/view_divider_top_email"
android:layout_alignStart="@+id/view_divider_top_email"
android:layout_alignRight="@+id/view_divider_top_email"
android:layout_alignEnd="@+id/view_divider_top_email"
android:drawableRight="@android:drawable/ic_delete" //this line will put the cross button on right of edit text
/>
我该怎么做
答案 0 :(得分:3)
尝试addTextChangeListener()
中的EditText
。当用户从EditText
输入或删除内容时,将调用它。
edt.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
// TODO Auto-generated method stub
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
// TODO Auto-generated method stub
}
@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
}
});
在onTextChanged()
或afterTextChanged()
内写下您的逻辑,检查EditText
数据的长度,如果它超过0设置drawableRight
。
edt.setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.drawableRight, 0);
否则清除可绘制
edt.setCompoundDrawablesWithIntrinsicBounds(0, 0, 0, 0);
答案 1 :(得分:0)
以下代码将:
TextWatcher
添加到EditText
。您可能还想尝试填充,否则只要EditText
本身,您的文字就会与图标重叠。
mEditText.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
@Override
public void afterTextChanged(Editable s) {
if(s.length() > 0) {
mEditText.setCompoundDrawablesWithIntrinsicBounds(0, 0, android.R.drawable.ic_delete, 0);
} else {
mEditText.setCompoundDrawablesWithIntrinsicBounds(0, 0, 0, 0);
}
}
});