没有默认左边距/填充的标准ActionBar图标

时间:2015-06-04 16:01:58

标签: android android-actionbar margin material

使用 Holo主题获取API级别> 14我在ActionBar中为图标的左边距检索健康外观,如下所示:

<style name="AppBaseTheme" parent="@android:style/Theme.Holo">

enter image description here

Material-theme 应用于 AppCompat_v7 支持(不更改代码或使用首选的新ToolBar)时,左边距会丢失。

<style name="AppBaseTheme" parent="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

enter image description here

为什么以及如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

作为第一个解决方法,我将图层列表可绘制资源名为 icon.xml 添加到 res / drawable / ,如下所示:

find(:css, "#school_data_selection_code_1").select "B"
find(:css, "#per_allocation_1").set "33"
find(:css, "#involvement_reservations_1").set "44"

并将此drawable引用为徽标,而不是 AndroidManifest.xml 中的原始图标本身:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <item
        android:drawable="@drawable/ic_launcher"
        android:left="20dp"/>
</layer-list>