java - Android - 无法修复折叠工具栏布局中的工具栏

标签 java android xml android-layout android-collapsingtoolbarlayout

我目前在布局的上部使用 CollapsingToolbar 布局。我想折叠特定部分(仅限 LinearLayout)并将工具栏固定在顶部。我能够在另一个项目中修复工具栏顶部的位置并防止其折叠。但是,由于某种原因,我无法修复工具栏的位置。任何帮助将不胜感激。这是我的布局 XML:

<?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:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/profile_coordinate_layout"
>

<android.support.design.widget.AppBarLayout
    android:id="@+id/app_bar_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    >
    <android.support.design.widget.CollapsingToolbarLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_scrollFlags="scroll|enterAlways"
        android:layout_gravity="fill_vertical"
        android:fitsSystemWindows="true"
        app:layout_collapseMode="pin"
        app:expandedTitleMarginStart="?actionBarSize"
        app:contentScrim="?colorPrimary"
        >

        <!--|||||||||||||||||||||||||||||||||||||||||||||||||-->
        <!--|||||||||||||||Collection Profile and about||||||-->
        <!--|||||||||||||||||||||||||||||||||||||||||||||||||-->
        <LinearLayout
            android:id="@+id/ll_header"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginTop="?actionBarSize"
            android:orientation="vertical"
            app:layout_collapseMode="pin"
            android:background="@drawable/gradient_feed_bg"
            >
            <include
                layout="@layout/item_collection_profile" />
        </LinearLayout>


        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?actionBarSize"
            android:background="@drawable/dark_primary_no_radius"
            app:layout_collapseMode="pin"
            android:elevation="@dimen/margin_4dp"
            >
            <include layout="@layout/action_bar_collection_profile"/>
        </android.support.v7.widget.Toolbar>
    </android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>


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

我正在 ViewPager 上加载另一个 fragment 。我正在使用以下代码来加载工具栏。

findViewById(R.id.toolbar). setBackgroundResource(R.drawable.dark_primary_no_radius);
setSupportActionBar((android.support.v7.widget.Toolbar)findViewById(R.id.toolbar));

这是更新结果:

enter image description here

正如您所看到的,在第二张图片中,工具栏折叠在顶部。任何帮助将不胜感激。

谢谢。

最佳答案

您只需在工具栏中使用app:layout_collapseMode="pin"。 从 LinearLayout 和 CollapsingToolbarLayout 等其他组件中删除它。

<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<android.support.design.widget.CollapsingToolbarLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
  app:layout_scrollFlags="scroll|exitUntilCollapsed"
    android:layout_gravity="fill_vertical"
    android:fitsSystemWindows="true"
    app:expandedTitleMarginStart="?actionBarSize"
    app:contentScrim="?colorPrimary"
    >

    <!--|||||||||||||||||||||||||||||||||||||||||||||||||-->
    <!--|||||||||||||||Collection Profile and about||||||-->
    <!--|||||||||||||||||||||||||||||||||||||||||||||||||-->
    <LinearLayout
        android:id="@+id/ll_header"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="?actionBarSize"
        android:orientation="vertical"
      app:layout_collapseMode="parallax"
        android:background="@drawable/gradient_feed_bg"
        >
        <include
            layout="@layout/item_collection_profile" />
    </LinearLayout>


    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?actionBarSize"
        android:background="@drawable/dark_primary_no_radius"
        app:layout_collapseMode="pin"
        android:elevation="@dimen/margin_4dp"
        >
        <include layout="@layout/action_bar_collection_profile"/>
    </android.support.v7.widget.Toolbar>
</android.support.design.widget.CollapsingToolbarLayout>

关于java - Android - 无法修复折叠工具栏布局中的工具栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43157328/

相关文章:

java - 调用作为参数传递给 Frida 中的 Hook 函数的 Java 对象的方法

java - LibGDX And​​roid onPause 改变纹理

Android - 如何从用户选择的歌曲创建 MediaPlayer

xml - 使用 CMake 变量生成/修补 XML 文件

java - JRedis future 稳定

Java 时间戳值

java - 将元素添加到 LinkedHashMap 中的 ArrayList [Android]

android - Android 内存不足错误

android - 如何图像按钮在 android 的 ListView 中创建圆圈?

javascript - 在 JavaScript 中读取 XML 属性