問題:
安卓在做復(fù)雜的列表時(shí),比如RecyclerView列表中嵌套了GridView圖片列表,結(jié)果在頁面加載或刷新時(shí)憎茂,RecyclerView會自動滾動到gridview列表項(xiàng)已展示全部gridview內(nèi)容珍语,如圖:
解決辦法:
一般出現(xiàn)這種情況是焦點(diǎn)問題,這時(shí)如果不想listView或girdView獲取焦點(diǎn)的話竖幔,需要在根布局設(shè)置
android:descendantFocusability="blocksDescendants"
例如:
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:descendantFocusability="blocksDescendants"
android:background="#eee" />
一行代碼板乙,輕松搞定