gpt4 book ai didi

Android ActionBar 后退按钮默认填充

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:49:46 25 4
gpt4 key购买 nike

我正在创建自定义 ActionBar,使用 RelativeLayout 和左侧的 ImageButton替换它。我已经从谷歌的网站下载了返回图标,用于 ImageButton

问题是我需要创建一个后退按钮来替换原始 ActionBar 的后退按钮,并且我需要它与原始 ActionBar 完全相同的后退按钮。

我想知道后退按钮图像的系统默认填充是什么?

最佳答案

您需要在声明中添加以下行,如下所示:

app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
app:contentInsetStartWithNavigation="0dp"

您可以通过调整上述数据来调整间距。

例子:

<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:theme="@style/ToolbarTheme"
app:titleTextAppearance="@style/Toolbar.TitleText"
app:titleTextColor="@android:color/white"
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
app:contentInsetStartWithNavigation="0dp"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

关于Android ActionBar 后退按钮默认填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34634366/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com