android - scrollview不会自动显示顶部的问题(scroll view 中包含了recycleview)

访问量: 1934

参考:https://stackoverflow.com/questions/16886077/android-scrollview-doesnt-start-at-top-but-at-the-beginning-of-the-gridview/21235114#21235114

原因:

recycleview会自动focus , 所以会把页面拖到底部。 

办法:

在代码中(记得不能在xml中)对该 recycleview 加上如下语句:

        recyclerView = (RecyclerView) rootView.findViewById(R.id.recycler_view);
        // 让页面置顶
        recyclerView.setFocusable(false);

订阅/RSS Feed

Subscribe