选项卡布局仅在投掷时折叠,而不是在慢速滚动时折叠



对于下面的布局,当我在查看页中的页面上向上滚动内容时......如果我将手指放在屏幕上并缓慢向上滚动,选项卡布局不会折叠到工具栏中,但如果我向上抛出内容,它会折叠。 知道为什么吗?

activity_home.xml

<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".newnav.home.HomeActivity">
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".newnav.NavigationActivity">
<!-- Check whether do we need this surface view still? -->
<SurfaceView
android:id="@+id/surfaceView"
android:layout_width="0dp"
android:layout_height="0dp" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<com.my.package.view.MyToolBar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:background="@color/primary_color" />
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/toolbar" />
<com.my.package.view.SomeCustomView
android:id="@+id/breaking_news_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true" />
</RelativeLayout>
<com.my.package.navigation.NavigationLayout
android:id="@+id/navigation_layout"
android:layout_width="320dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@android:color/white"
android:fitsSystemWindows="true" />
</android.support.v4.widget.DrawerLayout>
</layout>

fragment_home.xml(父布局具有工具栏(:

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.design.widget.CoordinatorLayout
android:id="@+id/coordinatorLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:fitsSystemWindows="true"
app:layout_behavior="com.nbc.news.newnav.home.NbcTabBarScrollingBehavior">
<android.support.design.widget.TabLayout
android:id="@+id/tabLayout"
style="@style/HomeTabDesign"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/top_nav_tab_bg"
app:tabBackground="@color/transparent"
android:elevation="4dp"
android:minHeight="@dimen/tab_layout_height"
app:layout_scrollFlags="scroll|enterAlways"
app:tabGravity="fill"
app:tabIndicatorColor="@color/home_tab_strip_color"
app:tabIndicatorHeight="3dp"
app:tabMaxWidth="0dp"
app:tabMode="fixed"
app:tabSelectedTextColor="@color/home_tab_text_color_selected"
app:tabTextColor="@color/home_tab_text_color_normal" />
</android.support.design.widget.AppBarLayout>
<com.my.package.view.MyViewPager
android:id="@+id/viewPager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
</layout>

section_fragment.xml(滚动视图(:

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<com.my.package.view.ProgressiveFrameLayout
android:id="@+id/progressiveLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/divider_white"
app:contentLayoutId="@id/contentLayout">
<FrameLayout
android:id="@+id/contentLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipeRefreshLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/sectionRecyclerView"
android:layout_width="match_parent"
android:descendantFocusability="blocksDescendants"
android:layout_height="match_parent"
android:background="@android:color/white" />
</android.support.v4.widget.SwipeRefreshLayout>
<FrameLayout
android:id="@+id/adContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center_horizontal" />
</FrameLayout>
</com.nbc.news.view.ProgressiveFrameLayout>
</layout>

旧答案

此解决方案在这种情况下不起作用。但它可能对其他人有所帮助。

您尚未提供代码的必要部分。但是,我强烈怀疑您在SwipeRefreshLayoutRecyclerview(或ListView(之间使用了中间布局。换句话说,SwipeRefreshLayout不是Recyclerview的直接父级。修复它,它将起作用。


如果你想知道后台到底发生了什么

如果你检查安卓源代码,你可以找到一个方法canSwipeRefreshChildScrollUp()。它负责确定此布局的子视图是否可以向上滚动。如果子视图是自定义视图,则需要覆盖此设置。

public boolean canChildScrollUp() {
if (mChildScrollUpCallback != null) {
return mChildScrollUpCallback.canChildScrollUp(this, mTarget);
}
if (android.os.Build.VERSION.SDK_INT < 14) {
if (mTarget instanceof AbsListView) {
final AbsListView absListView = (AbsListView) mTarget;
return absListView.getChildCount() > 0
&& (absListView.getFirstVisiblePosition() > 0 || absListView.getChildAt(0)
.getTop() < absListView.getPaddingTop());
} else {
return ViewCompat.canScrollVertically(mTarget, -1) || mTarget.getScrollY() > 0;
}
} else {
return ViewCompat.canScrollVertically(mTarget, -1);
}
}

如果使用中间视图,则轻扫刷新布局将假定它是目标(请参阅方法第 6 行中的 mTarget(,并且该视图的默认实现始终返回 false,这将导致此问题。

新答案

CoordinatorLayout的子接口应该实现NestedScrollingChild接口。因此,请尝试将FrameLayout包装在NestedScrollView中

最新更新