Android ActionBar 后退按钮默认填充
Posted
技术标签:
【中文标题】Android ActionBar 后退按钮默认填充【英文标题】:Android ActionBar Backbutton Default Padding 【发布时间】:2016-04-10 14:47:54 【问题描述】:我正在创建一个自定义ActionBar
,使用RelativeLayout
和左侧的ImageButton
来替换它。我已经从 google 的网站下载了返回图标,以便在 ImageButton
上使用
问题是我需要创建一个返回按钮来替换原来ActionBar
的返回按钮,并且我需要它与原来ActionBar
的返回按钮完全相同。
我想知道系统对后退按钮图像的默认填充是什么?
【问题讨论】:
【参考方案1】:您需要在声明中添加如下几行:
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_
android:layout_
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">
【讨论】:
【参考方案2】:嗯,我认为 contentInset 的默认值是 16 dp (left & right)
更多信息:(搜索内嵌的内容)https://android.googlesource.com/platform/frameworks/base/+/refs/heads/master/core/res/res/values/dimens_material.xml
Android API 21 Toolbar Padding
我希望这能回答你的问题。
【讨论】:
【参考方案3】:从Material Design spec 开始,工具栏图标的内边距为 16dp。
请参阅“应用栏图标顶部、底部、左侧内边距:16dp”
【讨论】:
以上是关于Android ActionBar 后退按钮默认填充的主要内容,如果未能解决你的问题,请参考以下文章
Android - 将 ActionBar 后退按钮切换为导航按钮
Android Studio:如何从 Fragment 在 ActionBar 中实现后退按钮