NestedScrollView中的RecyclerView:使水平滚动更容易

时间:2016-01-04 15:23:20

标签: android android-recyclerview nestedscrollview

我正在开发一个Android应用程序,我有一个垂直的NestedScrollView,他占据了我的所有屏幕,并且在多个水平的RecyclerView中。它起作用,但水平卷轴很难实现。

我的意思是,当我水平滚动时,手势被NestedScrollView捕获,并且视图向上/向下移动。我需要专注并做一个真正的水平移动来滚动RecyclerView,它会杀死UX ......

这是我的NestedScrollView:

<android.support.v4.widget.NestedScrollView
    android:id="@+id/scrollView"
    android:scrollbars="none"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginTop="5dp"
    android:layout_marginEnd="5dp"
    android:layout_marginRight="5dp"
    android:layout_marginLeft="5dp"
    android:layout_marginStart="5dp">

    <LinearLayout
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:id="@+id/scrollLayout"
        android:orientation="vertical" />

</android.support.v4.widget.NestedScrollView>

我以编程方式对RecyclerView进行充气,因为数字是在网络数据中定义的,这里是夸大的布局:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <TextView
        android:textSize="@dimen/secondary_text_size"
        android:textAllCaps="true"
        android:layout_marginBottom="5dp"
        android:layout_marginTop="5dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerView"
        android:layout_width="match_parent"
        android:layout_height="@dimen/recycler_view_size" />

</LinearLayout>

我如何在Java中设置我的RecyclerView:

LayoutInflater inflater = LayoutInflater.from(context);
LinearLayout layout = (LinearLayout) inflater.inflate(R.layout.recycler_view_layout, null, false);

RecyclerView recyclerView = (RecyclerView) layout.findViewById(R.id.recyclerView);
LinearLayoutManager layoutManager = new LinearLayoutManager(context, LinearLayoutManager.HORIZONTAL, false);

recyclerView.setHasFixedSize(false);
recyclerView.setLayoutManager(layoutManager);
recyclerView.setAdapter(this);
recyclerView.setItemAnimator(new DefaultItemAnimator());
recyclerView.setNestedScrollingEnabled(false);

我试图改变&#34;速度&#34; NestedScrollView,但我找不到好的建议/帖子,也许我找不到好的建议。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

希望你觉得它很有用,因为我认为你需要实现其中一个库(在GitHub上你会发现更多):

如果您想使用标准Android库,RecyclerView如果您想要水平滚动可能会有用

要证明它具有水平滚动支持,请查看:

  

public boolean canScrollHorizo​​ntally()

     

查询当前是否支持水平滚动。默认   实现返回false。

     

返回如果此LayoutManager可以水平滚动当前内容,则为True

  

public int computeHorizo​​ntalScrollExtent(RecyclerView.State state)

     

如果要支持滚动条,请覆盖此方法。

     

阅读computeHorizo​​ntalScrollExtent()了解详细信息。

     

默认实现返回0.

     

来自:https://developer.android.com/reference/android/support/v7/widget/RecyclerView.LayoutManager.html

同时检查名为RecyclerView

HorizontalGridView的子类

希望有所帮助。