gpt4 book ai didi

java - 修改inputType :number|phone Android Studio

转载 作者:行者123 更新时间:2023-12-01 18:24:55 24 4
gpt4 key购买 nike

是否可以在android studio中以某种方式修改inputType:Phone?使用 # * 键指向其他图标并提交会很方便。现在提交的唯一方法是按手机上的后退按钮退出输入键盘。

最佳答案

在您的 EditText xml 中添加这两行

<EditText 
android:imeOptions="actionGo"
android:inputType="number"/>
//the action button of keyboard will change to go button

然后你可以在java中设置点击该按钮

edittext.setOnEditorActionListener(new OnEditorActionListener() { 
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (actionId == EditorInfo.IME_ACTION_GO) {
Log.i(TAG,"Here you can perform actions"); //like btn.performClick();
return true;
}
return false;
}
});

关于java - 修改inputType :number|phone Android Studio,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60244385/

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