gpt4 book ai didi

android - 如何在单击按钮时清除编辑文本

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:52:13 28 4
gpt4 key购买 nike

如何清除单击按钮时动态提供给 EditText 的数据?我该如何编写代码?我使用什么功能或方法?

最佳答案

尝试

 public void clear(View v) {
edittext.setText("");
}

clear 像这样在布局文件中注册为按钮的 onclick 处理程序

<ImageButton android:id="@+id/ClearButton"
android:text="@string/ClearButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="clear" <<<--------here
android:src="@drawable/clear"
/>

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

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