EditText
オーバーラップするためのキーパッドが必要ですが、ビューEditText
の下にキーパッドが必要です。EditText
EDIT:
finally i got the answer for this. we need to set
android:imeOptions="flagNoExtractUi" in `edittext`
ポップアップを非表示にします。
EditText
オーバーラップするためのキーパッドが必要ですが、ビューEditText
の下にキーパッドが必要です。EditText
EDIT:
finally i got the answer for this. we need to set
android:imeOptions="flagNoExtractUi" in `edittext`
ポップアップを非表示にします。
必要なのは、クラスのこのパラメータandroid:windowSoftInputMode="adjustPan"
を設定することだけです。AndroidManifest
Activity
EditTextを非表示にせずに、ソフトキーボード用のスペースを 設定android:windowSoftInputMode
または作成する必要があります。android:windowSoftInputMode
<activity android:windowSoftInputMode="adjustResize" />
また
<activity android:windowSoftInputMode="adjustPan" />