> I'm using Recyclerview. The page slides up when I click on EditText. How to fix this.
Asked
Active
Viewed 84 times
3
-
2Have you tried [this](https://stackoverflow.com/questions/9989130/page-scroll-when-soft-keyboard-popped-up) ? – Nilesh Panchal Mar 07 '19 at 06:32
-
1Could you add the `layout` resource file with the `recycler-view` – Sushant Paudel Mar 07 '19 at 06:35
-
thank you i problem solved. @NileshPanchal – Sezer Türkdal Mar 07 '19 at 06:55
-
1welcome @Sezer Türkdal – Nilesh Panchal Mar 07 '19 at 06:56
-
1add this code in AndrodiManifest.xml **android:windowSoftInputMode="adjustPan"** in activity tag – Android Geek Mar 07 '19 at 07:20
-
in **menifest.xml** add this line in activity tag **android:windowSoftInputMode="stateHidden|adjustPan"** – Android Geek Mar 12 '19 at 09:24
2 Answers
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