gpt4 book ai didi

android - 在最后一个 EditText 上按键盘上的 Done 后隐式 "Submit"

转载 作者:IT老高 更新时间:2023-10-28 13:07:37 24 4
gpt4 key购买 nike

我使用了一些应用程序,当我填写我的用户名,然后转到我的密码时,如果我在键盘上点击“完成”,登录表单会自动提交,而无需我点击提交按钮。这是怎么做到的?

最佳答案

试试这个:

在你的布局中放置/编辑这个:

<EditText
android:id="@+id/search_edit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text"
android:singleLine="true"
android:imeOptions="actionDone" />

在你的 Activity 中放这个(例如在 onCreate 中):

 // your text box
EditText edit_txt = (EditText) findViewById(R.id.search_edit);

edit_txt.setOnEditorActionListener(new EditText.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (actionId == EditorInfo.IME_ACTION_DONE) {
submit_btn.performClick();
return true;
}
return false;
}
});

submit_btn 是附有 onclick 处理程序的提交按钮。

关于android - 在最后一个 EditText 上按键盘上的 Done 后隐式 "Submit",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19217582/

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