【问题标题】:RecyclerView is in the middle instead of top after orientation changes from landscape to portrait方向从横向更改为纵向后,RecyclerView 位于中间而不是顶部
【发布时间】:2015-07-11 08:47:31
【问题描述】:

我在片段中使用了 recyclerview。如果 Activity 的 configChanges 包含方向,则在手机方向从横向变为纵向后,回收站视图会出现在屏幕中间。但是,它应该始终位于顶部。如果 configChanges 不包括方向,它总是出现在方向变化的顶部。

你知道这是什么原因吗?

这是活动布局

 <android.support.design.widget.CoordinatorLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    tools:context="com.butterfly.LoginActivity">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        android:layout_height="wrap_content">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:layout_scrollFlags="scroll|enterAlways"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

    </android.support.design.widget.AppBarLayout>


    <FrameLayout
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        android:id="@+id/butterflypi_fragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="top|start" />


    </android.support.design.widget.CoordinatorLayout>

这是片段布局替换上面的框架布局。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="8dp"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    tools:context="com.butterfly.fragment.ButterflyPIsFragment">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/my_pi_recycler_view"
        android:scrollbars="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentTop="true"

        />
</RelativeLayout>

【问题讨论】:

    标签: android android-recyclerview android-configchanges


    【解决方案1】:

    我找到了解决方案here

    基本上你是在创建自己的行为类:

    public class PatchedScrollingViewBehavior extends AppBarLayout.ScrollingViewBehavior {
    
        public PatchedScrollingViewBehavior() {
            super();
        }
    
        public PatchedScrollingViewBehavior(Context context, AttributeSet attrs) {
            super(context, attrs);
        }
    
        @Override
        public boolean onMeasureChild(CoordinatorLayout parent, View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) {
            if (child.getLayoutParams().height == -1) {
                List dependencies = parent.getDependencies(child);
                if (dependencies.isEmpty()) {
                    return false;
                }
    
                AppBarLayout appBar = findFirstAppBarLayout(dependencies);
                if (appBar != null && ViewCompat.isLaidOut(appBar)) {
                    if (ViewCompat.getFitsSystemWindows(appBar)) {
                        ViewCompat.setFitsSystemWindows(child, true);
                    }
    
                    int scrollRange = appBar.getTotalScrollRange();
    //                int height = parent.getHeight() - appBar.getMeasuredHeight() + scrollRange;
                    int parentHeight = View.MeasureSpec.getSize(parentHeightMeasureSpec);
                    int height = parentHeight - appBar.getMeasuredHeight() + scrollRange;
                    int heightMeasureSpec = View.MeasureSpec.makeMeasureSpec(height, View.MeasureSpec.AT_MOST);
                    parent.onMeasureChild(child, parentWidthMeasureSpec, widthUsed, heightMeasureSpec, heightUsed);
                    return true;
                }
            }
    
            return false;
        }
    
    
        private static AppBarLayout findFirstAppBarLayout(List<View> views) {
            int i = 0;
    
            for (int z = views.size(); i < z; ++i) {
                View view = (View) views.get(i);
                if (view instanceof AppBarLayout) {
                    return (AppBarLayout) view;
                }
            }
    
            return null;
        }
    }
    

    并在 FrameLayout 中更改 app:layout_behavior:

    <FrameLayout
            app:layout_behavior="your_package.PatchedScrollingViewBehavior"
            android:id="@+id/butterflypi_fragment"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_gravity="top|start" />
    

    更新:我刚刚检查过 - 这个问题已在 22.2.1 库中修复,所以请更新库,如果您仍在使用 22.2.0

    【讨论】:

      【解决方案2】:

      您可以通过创建 PORTRAIT 和 LANDSCAPE 布局来实现所需的效果,就像在demo here 中一样。如果这是您想要的行为,请查看附加的剪辑。

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 1970-01-01
        • 2015-01-10
        • 1970-01-01
        • 2015-08-03
        • 2019-03-30
        • 1970-01-01
        • 1970-01-01
        • 2020-10-13
        相关资源
        最近更新 更多