0

I have an editText (Input type : only numbers) and I already know how show always the keyboard.

I'm currently using this coded in my manifest :

android:windowSoftInputMode="adjustResize"

But how can I show always**(everytime that the activity starts)** the numpad instead the keyboard ?

4

2 回答 2

2

在您的清单文件中,尝试将以下内容添加到<activity>您希望在活动开始时显示键盘的内容中:

android:windowSoftInputMode="stateVisible"

有关更多选项,请查看文档

于 2016-01-29T03:09:25.157 回答
0

首先,将此行添加到您的 mainfest

android:windowSoftInputMode="adjustResize|stateAlwaysVisible"

然后在 xml 中将 inputtype 设置为

android:inputType="numberSigned"

这对我有用,希望你能得到帮助

并且必须设置在那个视图

于 2016-01-29T04:13:05.217 回答