我有一個recyclerView
,高度和寬度爲matchParent
,高於和低於某些視圖。查看下面recyclerView
是editText
。當在editText
中輸入某些內容並鍵盤關閉時,recyclerView
將滾動到頂部。任何想法爲什麼它正在發生以及如何解決。RecyclerView在鍵盤隱藏後滾動到頂部
相關的XML在:https://gist.github.com/anonymous/42c38f8a50daf0f441552c985e29a309
我有一個recyclerView
,高度和寬度爲matchParent
,高於和低於某些視圖。查看下面recyclerView
是editText
。當在editText
中輸入某些內容並鍵盤關閉時,recyclerView
將滾動到頂部。任何想法爲什麼它正在發生以及如何解決。RecyclerView在鍵盤隱藏後滾動到頂部
相關的XML在:https://gist.github.com/anonymous/42c38f8a50daf0f441552c985e29a309
你可以嘗試將此代碼添加到您的清單:
android:windowSoftInputMode="adjustPan"
<activity
android:name=".YourActivity"
android:configChanges="keyboard|keyboardHidden"
android:label="@string/title_activity"
android:windowSoftInputMode="adjustPan"
>
編輯
@seema你可以嘗試android:windowSoftInputMode =「adjustPan」 –
這是行之有效的?與你@seema –
adjustpan工作... – seema
ü可以添加你的XML代碼 – Anil
我家這有助於: HTTPS ://stackoverflow.com/questions/45458054/why-does-recyclerview-scroll-to-top-of-view-when-view-is-focused 我認爲這是同樣的問題。 –
使用自定義線性佈局管理器 – Piyush