对于我的第一个(已解决的)问题SO Android show softkeybard ...
,我有一个必然的问题滑动键盘关闭后,我希望我的活动在开始时显示键盘。
同一清单应适用于我的活动清单中设置的“stateVisible
”。我需要InputMethodManger
的任何显式代码吗?同样,我已经尝试了明显的方法和标志,但它没有打开带有滑动键盘的手机上的键盘。
为方便起见,复制清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mycompany.android.studyIme"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="7" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".StudyImeActivity"
android:label="@string/app_name"
android:windowSoftInputMode="stateAlwaysVisible|stateVisible">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
答案 0 :(得分:-1)
我的同事解决了这个问题。她没有试图强制展示,而是通过“切换”方法展示了解决方案。
InputMethodManager imm = (InputMethodManager) getApplicationContext().getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);
当然,您可能希望将其包含在键盘状态的配置检查中。