使用一个布局里面有recyclerView时,首次打开页面-加载数据-展示列表。这时 recyclerView会自动往下滑一段。这是因为recyclerview获取到了焦点。在父布局增加android:descendantFocusability="blocksDescendants"可解决
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:descendantFocusability="blocksDescendants">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerview"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</RelativeLayout>