CollapsingToolbarLayout 隐藏了我的后退按钮
CollapsingToolbarLayout hides my back button
我创建了折叠工具栏,但似乎无法展开后退按钮或其他菜单项。
我这样给后退按钮充气:
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>
我该如何解决这个问题?
我尝试了几种方法,例如指定父级 activity 等似乎没有用
0dp
在你的 <Toolbar>
中没有任何意义所以让它成为 match_parent
- 使用以下方式之一添加您的图标:
直接在工具栏上添加返回按钮:
<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">
我创建了折叠工具栏,但似乎无法展开后退按钮或其他菜单项。
我这样给后退按钮充气:
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>
我该如何解决这个问题? 我尝试了几种方法,例如指定父级 activity 等似乎没有用
0dp
在你的<Toolbar>
中没有任何意义所以让它成为match_parent
- 使用以下方式之一添加您的图标:
直接在工具栏上添加返回按钮:
<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">