I have similar issue with: this, I have set:
android:windowSoftInputMode="adjustPan"
but the bottom of the EditText
is overlapped by the keyboard. My:
<uses-sdk android:minSdkVersion="8" />
Anybody know the reason? Thanks in advance.
I have similar issue with: this, I have set:
android:windowSoftInputMode="adjustPan"
but the bottom of the EditText
is overlapped by the keyboard. My:
<uses-sdk android:minSdkVersion="8" />
Anybody know the reason? Thanks in advance.
For that you have to declared in your activity manifest
<activity
android:name=".activityname"
android:label="@string/app_name"
android:windowSoftInputMode="adjustPan|adjustResize" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>