折叠工具栏布局(CollapsingToolbarLayout)隐藏了我的后退按钮。

问题描述 投票:0回答:1

我创建了折叠工具条,但似乎我不能给后方按钮或其他菜单项充气。

我的后退按钮是这样膨胀的。

    toolbar_detail = findViewById(R.id.tool_de);
    setSupportActionBar(toolbar_detail);

    if (toolbar_detail != null) {
        Objects.requireNonNull(getSupportActionBar()).setDisplayHomeAsUpEnabled(true);}

这就是我的折叠式应用栏布局。

  <?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:fitsSystemWindows="true"
    tools:context=".Detail">

    <com.google.android.material.appbar.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        android:id="@+id/app_bar">

        <com.google.android.material.appbar.CollapsingToolbarLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/coolaps_tool_bar"
            android:fitsSystemWindows="true"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
            app:layout_scrollFlags="scroll|exitUntilCollapsed"
            app:contentScrim="@color/colorPrimary">
            <ImageView
                android:layout_width="match_parent"
                android:layout_height="250dp"
                android:scaleType="centerCrop"
                app:layout_collapseMode="parallax"
                android:src="@drawable/ic_launcher_background"
                android:contentDescription="zx" />

            <androidx.appcompat.widget.Toolbar
                android:id="@+id/tool_de"
                android:layout_width="0dp"
                android:layout_height="?attr/actionBarSize"
                android:background="@color/colorPrimary"
                android:elevation="4dp"
                app:layout_collapseMode="pin"
               app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
                app:titleTextColor="@android:color/white" />

        </com.google.android.material.appbar.CollapsingToolbarLayout>


    </com.google.android.material.appbar.AppBarLayout>

    <androidx.core.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="sdsaa"
            />
    </androidx.core.widget.NestedScrollView>

</androidx.coordinatorlayout.widget.CoordinatorLayout>

我怎么才能解决这个问题呢? 我试了好几种方法,比如指定上级活动等等,但似乎都没有效果

android android-layout android-coordinatorlayout
1个回答
1
投票
  1. 0dp 在你看来毫无意义 <Toolbar> 就这样 match_parent
  2. 通过以下方式添加您的图标。

直接在工具栏上添加返回按钮。

<androidx.appcompat.widget.Toolbar
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:navigationIcon="@drawable/my_back_button_icon"/>

如果你想使用默认的 ActionBar 后退按钮。

getSupportActionBar()).setDisplayHomeAsUpEnabled(true);

一定要在你的AndroidManifest里设置一个父级。

<activity android:name=".SecondActivity" android:parentActivityName=".MainActivity">
© www.soinside.com 2019 - 2024. All rights reserved.