1
看起來像一個簡單的問題,但我找不到任何解決方案。當軟鍵盤出現時,將視圖鎖定到屏幕頂部
我的佈局,層次結構也很簡單:
<RelativeLayout
...>
<LinearLayout
android:id="@id/header"
android:layout_alignParentTop="true"
...>
/>
<RecyclerView
...>
/>
<RelativeLayout
android:id="@id/footer"
android:layout_alignParentBottom="true"
...>
/>
</RelativeLayout>
會發生什麼: 我有一個EditText
,這是頁腳佈局的孩子。當它獲得焦點時,軟鍵盤出現,整個佈局被拉起。
我想達到的目標: ......,在softkeyboard出現,標題將保持在頂部,頁腳將softkeyboard(就像現在)上面拉,唯一的調整視圖會RecyclerView
。
我嘗試了幾十種組合與windowSoftInputMode
,結合我的佈局與ScrollView
...但沒有什麼幫助。
它一定很容易,不是嗎?
編輯:佈局DialogFragment