Sezer Türkdal
Sezer Türkdal

Reputation: 193

Recyclerview and Cardview I have design problems

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

Upvotes: 3

Views: 85

Answers (2)

Bhavik Nathani
Bhavik Nathani

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

Shanto George
Shanto George

Reputation: 994

Please use

android:windowSoftInputMode="stateHidden|adjustPan"

Inside manifest file

Upvotes: 1

Related Questions