Activity with fragments does not resize when the keyboard opens

前端 未结 7 1560
挽巷
挽巷 2020-12-08 04:38

In my main activity there is a RelativeLayout that has 2 childs:

  • An ImageView which serves as the background
  • A LinearLa
相关标签:
7条回答
  • 2020-12-08 05:36

    use this line in your manifest file against your activity in which you want your result hope it will help you

       android:windowSoftInputMode="adjustPan|stateAlwaysHidden" 
    

    like

      <activity
                android:name="com.android.youractivity"
                android:windowSoftInputMode="adjustPan|stateAlwaysHidden" />
    
    0 讨论(0)
提交回复
热议问题