我想用键盘上方的Prev,Next Buttons显示虚拟键盘。
当用户点击上一步按钮时,光标应移至上一个编辑文本输入字段,单击下一个按钮应转到视图中的下一个编辑文本字段。
我想在自己的活动中使用这些按钮。我怎么能这样做?
答案 0 :(得分:2)
这可以通过将android:windowSoftInputMode =“adjustPan”添加到activity来实现 清单中的元素。 E.g。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.codename.android"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/MyTheme"
>
<activity android:name=".MainActivity"
android:label="@string/app_name"
android:windowSoftInputMode="adjustPan">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="7" />
</manifest>
这可以防止在显示虚拟键盘时调整视图大小。
答案 1 :(得分:2)
您可以在布局中为Edittext设置正确的IME选项。
android:imeOptions="actionNext"
完成
机器人:imeOptions = “actionDone”
答案 2 :(得分:1)
Android code to override the "Done" button in my EditText field:
myEditField.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (actionId == EditorInfo.IME_ACTION_DONE) {
InputMethodManager imm =(InputMethodManager)getSystemService(INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(getWindowToken(), 0);//hide the keyboard.
return true;
}
return false;
}
});