Reputation: 193
> I'm using Recyclerview. The page slides up when I click on EditText. How to fix this.
Upvotes: 3
Views: 85
Reputation: 499
- Add Following Code Into AndroidManifest.xml With Specific Activity.
android:windowSoftInputMode="adjustPan"
<activity
android:name=".MainActivity"
android:theme="@style/Theme.Design.NoActionBar"
android:windowSoftInputMode="adjustPan">
Upvotes: 0
Reputation: 994
Please use
android:windowSoftInputMode="stateHidden|adjustPan"
Inside manifest file
Upvotes: 1