我有这个非常简单的布局:
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/tools"
android:id="@+id/root"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ActionBarThemeOverlay">
<!--<include layout="@layout/include_toolbar_actionbar" />-->
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways" />
</android.support.design.widget.AppBarLayout>
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/background"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
我将Fragment
标准RecyclerView
添加到fragment_container
。不幸的是,Toolbar
始终隐藏,我无法理解为什么?
非常感谢你的帮助!
答案 0 :(得分:0)
你可以试试这个:solution from similar question.
基本上,您必须使用android.support.v4.widget.NestedScrollView
而不是ScrollView
(在您的片段中)并在NestedScrollView xml中实现app:layout_behavior="@string/appbar_scrolling_view_behavior"
。