如何在Android中编辑时在编辑文本中显示清除按钮

时间:2016-01-21 15:57:14

标签: android android-edittext

我是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
    />

我该怎么做

2 个答案:

答案 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)

以下代码将:

  1. TextWatcher添加到EditText
  2. 它将检查长度。
  3. 如果大于0,我们将删除图标添加到右侧drawable。
  4. 如果为0,则删除所有图标。
  5. 您可能还想尝试填充,否则只要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);
            }
        }
    });