嵌套的recyclerview视图,如播放Play商店应用

时间:2017-03-08 11:37:43

标签: android android-recyclerview

我正在尝试使用像Play Store应用主页这样的CardView进行嵌套的recyclerview,到目前为止它的工作方式却不如Play商店那么顺利。

当回收者视图滚动位置为0并且我开始向右拖动时,边缘效果按预期显示,但很快我继续向上拖动它看起来像我的水平Recyclerview失去焦点而父母垂直一个接管。从Play商店应用程序中,在从边缘水平拖动后继续向上拖动时,您不会失去焦点。 我坚持认为只有当我在回收者视角边时才会发生。

enter image description here

除此之外(这可能是相关的),从Play商店应用程序启动水平滚动看起来更容易,我的意思是如果你从水平方向拖动30°角度,PlayStore app会启动水平滚动,但是我的应用程序似乎我需要一个最大10°的角度来启动我,否则垂直滚动接管。

这是我的垂直回收站视图代码(在协调器布局内):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          style="@style/AppStyle.Fragment"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:orientation="vertical">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="56dp"
        android:background="?attr/colorPrimary"
        android:gravity="center"
        android:text="weather / places"
        android:textColor="@android:color/white"/>

    <android.support.v7.widget.RecyclerView
        android:id="@+id/list"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"/>
</LinearLayout>

-

mList.setLayoutManager( new LinearLayoutManager( getContext( ),
                                                LinearLayoutManager.VERTICAL,
                                                     false ) );
mList.setAdapter( new HomeAdapter( ) );

这是嵌套的横向:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          xmlns:tools="http://schemas.android.com/tools"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:orientation="vertical"
          android:padding="@dimen/screen_padding">

<TextView
    android:id="@+id/title"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fontFamily="sans-serif-medium"
    android:paddingLeft="4dp"
    android:paddingRight="4dp"
    android:textSize="18sp"
    tools:text="hello world"/>

<Space
    android:layout_width="match_parent"
    android:layout_height="10dp"/>

<View
    android:layout_width="match_parent"
    android:layout_height="1dp"
    android:layout_marginLeft="4dp"
    android:layout_marginRight="4dp"
    android:background="@color/divider"/>

<Space
    android:layout_width="match_parent"
    android:layout_height="20dp"/>

<android.support.v7.widget.RecyclerView
    android:id="@+id/list"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:fadingEdgeLength="30dp"
    android:requiresFadingEdge="horizontal"/>

ListViewHolder( View itemView )
{
    super( itemView );

    list.setLayoutManager( new LinearLayoutManager( getContext( ),
                                                        LinearLayoutManager.HORIZONTAL,
                                                        false ) );
    list.setHasFixedSize( true );
    SnapHelper snapHelper = new LinearSnapHelper( );
    snapHelper.attachToRecyclerView( list );
    list.setAdapter( new ListAdapter( ) );
    list.setNestedScrollingEnabled( false );
}

1 个答案:

答案 0 :(得分:3)

刚刚找到解决方案,从嵌套的水平Recyclerview添加:

childHorizontalList.addOnScrollListener( new RecyclerView.OnScrollListener( )
{
    @Override
    public void onScrollStateChanged( RecyclerView recyclerView, int newState )
    {
        super.onScrollStateChanged( recyclerView, newState );

        parentVerticalList.setLayoutFrozen( newState != RecyclerView.SCROLL_STATE_IDLE );
    }
} );