3

enter image description here> I'm using Recyclerview. The page slides up when I click on EditText. How to fix this.

enter image description here

Sezer Türkdal
  • 193
  • 2
  • 10

2 Answers2

1

Please use

android:windowSoftInputMode="stateHidden|adjustPan"

Inside manifest file

Shanto George
  • 994
  • 13
  • 26
0

- 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">

Bhavik Nathani
  • 470
  • 5
  • 13