gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 17:25:14 26 4
gpt4 key购买 nike

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

我该怎么做

最佳答案

尝试在 EditText 中使用 addTextChangeListener()。当用户从 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 set drawableRight.

edt.setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.drawableRight, 0);

否则清除drawable

edt.setCompoundDrawablesWithIntrinsicBounds(0, 0, 0, 0);

关于android - 如何在 Android 中编辑时在编辑文本中显示清除按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34928376/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com