gpt4 book ai didi

android - 在没有edittext的情况下打开数字小键盘android

转载 作者:行者123 更新时间:2023-11-30 01:41:24 26 4
gpt4 key购买 nike

我想在整个布局中没有 edittext 的情况下打开数字键盘。到目前为止,我能够显示键盘。但我无法将类型更改为数字键盘。

这是目前可用的代码,但我想将键盘切换为数字小键盘。

requestFocus();
handler.postDelayed(new Runnable() {
@Override
public void run() {
inputMethodManager.showSoftInput(context, InputMethodManager.SHOW_IMPLICIT);
}
}, 300);

这是一个 View ,我请求焦点然后当它被点击时我想显示数字键盘。

最佳答案

将editText的backGround设置为透明

           <EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:inputType="textMultiLine"
android:layout_margin="10dp"
android:background="@color/transparent"/>

以编程方式设置输入类型。

editText.setRawInputType(2);

关于android - 在没有edittext的情况下打开数字小键盘android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34462661/

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