滚动视图内的recyclelerview会影响滚动位置

时间:2016-06-30 12:05:25

标签: android

我有以下布局结构

  --FrameLayout
    --scrollview
       --LinearLayout
          --LinearLayout
          --RecyclerView
    --LinearLayout

当我到达页面时,它似乎滚动到回收站视图。 我只是希望滚动位置在到达页面时位于顶部。

看起来奇怪,当我在scrollview中的linearlayoout和recyclerview之间切换顺序时,行为是正确的 - 就像滚动位置在顶部

1 个答案:

答案 0 :(得分:18)

这对我有用:

mRecyclerView.setFocusable(false);

虽然这里有很多好的答案:How to scroll to top of long ScrollView layout?