我试图按照以下代码进行布局
<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/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".module.activity.DetailReviewActivity">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/appbar_padding_top"
android:theme="@style/AppTheme.AppBarOverlay">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_scrollFlags="scroll|enterAlways">
<ImageView
android:id="@+id/videoIV"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<ImageView
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_centerInParent="true"
android:src="@drawable/ic_play_circle_outline_24dp" />
</RelativeLayout>
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.design.widget.TabItem
android:id="@+id/tabItem"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/tab_text_1" />
<android.support.design.widget.TabItem
android:id="@+id/tabItem2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/tab_text_2" />
</android.support.design.widget.TabLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/container2"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
我希望滚动时相对布局中的所有内容都消失。现在,只有当我在相对布局和选项卡布局中滚动时,相对布局才会消失。但是,当我在视图寻呼机上滚动时,相对布局不会滚动。我在视图分页器的片段中没有使用任何列表视图。
答案 0 :(得分:0)
根据documentation for AppBarLayout
:
AppBarLayout还需要单独的滚动同级,以便知道何时滚动。绑定是通过AppBarLayout.ScrollingViewBehavior行为类完成的,这意味着您应将滚动视图的行为设置为AppBarLayout.ScrollingViewBehavior的实例。
如果ViewPager
的内容不滚动,则没有“滚动同级”。 (我假设您说“我没有使用任何列表视图”时,ViewPager
的内容不会滚动。)
如果ViewPager
的内容不滚动,则可以将ViewPager
的内容包装在NestedScrollView
中,如下所示:
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Your ViewPager content layout here. -->
</android.support.v4.widget.NestedScrollView>
这就是要添加到ViewPager
中的内容。