我的AppBar布局具有TabLayout。该选项卡布局连接到其中包含带有recyclerview的片段的viewpager。 我要在按下按钮时设置appBarLayout.setExpanded(false)。
在触发此方法时,在大多数情况下,appBar成功折叠,并且tabLayout放置在工具栏正下方,但有时它滚动并最终完全展开,或者appBar的某些部分变得可见。 这种奇怪的滚动可能是什么原因?请帮助
这是布局文件。
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/parentContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Light">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapseToolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleTextAppearance="@style/TextAppearance.AppCompat.Title"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_collapseMode="none">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="200dp">
<ImageView
android:id="@+id/iv_hero_image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:foreground="@drawable/dark_gradient"
android:scaleType="fitXY"/>
</FrameLayout>
<include layout="@layout/info_lyt"/>
<android.support.v7.widget.AppCompatImageView
android:id="@+id/iv_logo"
android:layout_width="@dimen/dimen_65dp"
android:layout_height="@dimen/dimen_65dp"
android:layout_gravity="start"
android:layout_marginLeft="@dimen/dimen_16dp"
android:layout_marginTop="@dimen/dimen_150dp"
tools:src="@drawable/promo_icon"
tools:srcCompat="@tools:sample/avatars"/>
</FrameLayout>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/ToolBarStyle">
<TextView
android:id="@+id/toolbarTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</android.support.v7.widget.Toolbar>
</android.support.design.widget.CollapsingToolbarLayout>
<android.support.design.widget.TabLayout
android:layout_width="match_parent"
android:layout_height="48dp"/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/vpDetail"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />