工具栏不从内部折叠工具栏显示

Toolbar not displaying from inside collapsing toolbar

这是代码。

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/main"
    android:layout_height="match_parent"
    android:layout_width="match_parent">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="100dp">

        <android.support.design.widget.CollapsingToolbarLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_scrollFlags="scroll|enterAlways|exitUntilCollapsed">

            <android.support.v7.widget.Toolbar
                android:id="@+id/mytoolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                app:title="@string/app_name"
                app:layout_collapseMode="pin"
                app:theme="@style/ThemeOverlay.AppCompat.Light"/>

            <android.support.design.widget.TabLayout
                android:id="@+id/main_tablayout"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_gravity="bottom"
                app:layout_collapseMode="none"/>


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

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

    <!--<android.support.v4.widget.NestedScrollView-->
        <!--android:id="@+id/nestedscroll"-->
        <!--android:layout_width="match_parent"-->
        <!--android:layout_height="match_parent"-->
        <!--android:fillViewport="true"-->
        <!--android:scrollbars="horizontal"-->
        <!--app:layout_behavior="@string/appbar_scrolling_view_behavior">-->

            <android.support.v4.view.ViewPager
                android:id="@+id/main_viewpager"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

    <!--</android.support.v4.widget.NestedScrollView>-->

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/main_fab"
        android:layout_margin="16dp"
        android:src="@android:drawable/ic_media_play"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_anchor="@id/main_viewpager"
        app:layout_anchorGravity="bottom|end"/>

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

问题:
1) 工具栏不可见。
2) 折叠工具栏根本不折叠。 [已解决]
3) 如果放在nestedScrollView 中,Viewpager 和FAB 也不可见。 [已解决]

额外的细节:
Viewpager 片段的布局以 Linearlayout 为根,内部有一个 recyclerview。

一切似乎都符合代码。无法理解缺少了什么。对协调器布局和折叠工具栏如何协同工作的一个很好的解释也确实有帮助。

首先你应该告诉你的 activity 你正在使用什么工具栏,所以在 onCreate 方法中你应该有:

    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

你的第二个和第三个问题应该一起解决。您应该使用 NestedScrollView 作为 ViewPager 内片段的主要布局,然后在其中放置您的 LinearLayout 或其他任何内容。

1) Toolbar is not visible.

首先你需要定义你想在 activity class:

中使用什么工具栏
 Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
 setSupportActionBar(toolbar);

更改现有 xml 代码:

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="?attr/colorPrimary"
            app:title="@string/app_name"
            app:layout_collapseMode="parallax">
        </android.support.v7.widget.Toolbar>

至:

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"  //set initial height
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light" //this might be also useful
            app:title="@string/app_name"
            app:layout_collapseMode="parallax" />

2) Collapsing toolbar doesn't collapse at all.

您的 activity 是否使用了正确的主题。设置为您的 AppBarLayout:

android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"

如本例所示:include_list_viewpager.xml

3) Viewpager and FAB also not visible if put inside nestedScrollView.

没有理由这样做。添加这些行:

android:layout_marginTop="?attr/actionBarSize" 
app:layout_behavior="@string/appbar_scrolling_view_behavior" 

ViewPager应该够了。

他们都是CoordinatorLayout.

的直系子代

按照这个例子:http://blog.nkdroidsolutions.com/collapsing-toolbar-with-tabs-android-example/

如果您是 Material 设计的新手,或者对它的某些行为感到有点迷茫,我强烈建议您查看 Chris Banes Material 设计项目 cheesequarehttps://github.com/chrisbanes/cheesesquare/

希望对您有所帮助