2

如何使用 XML 主题更改操作栏图标或徽标空间的顶部和底部填充或边距?

<style name="Theme.Whycheck" parent="@style/Theme.AppCompat.Light.DarkActionBar">
    <item name="actionBarItemBackground">@drawable/selectable_background_whycheck</item>
    <item name="actionBarStyle">@style/ActionBar.Solid.Whycheck</item>
    <item name="actionModeBackground">@drawable/cab_background_top_whycheck</item>
    <item name="actionModeSplitBackground">@drawable/cab_background_bottom_whycheck</item>

            <!-- Light.DarkActionBar specific -->
    <item name="actionBarWidgetTheme">@style/Theme.Whycheck.Widget</item>

</style>

<style name="ActionBar.Solid.Whycheck" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
    <item name="background">@drawable/ab_solid_whycheck</item>
    <item name="backgroundStacked">@drawable/ab_stacked_solid_whycheck</item>
    <item name="backgroundSplit">@drawable/ab_bottom_solid_whycheck</item>
</style>

<style name="ActionBar.Transparent.Whycheck" parent="@style/Widget.AppCompat.ActionBar">
    <item name="background">@drawable/ab_transparent_whycheck</item>
</style>

<!-- this style is only referenced in a Light.DarkActionBar based theme -->
<style name="Theme.Whycheck.Widget" parent="@style/Theme.AppCompat">
</style>

提供了我的风格。

4

2 回答 2

4

这里的解决方案对我不起作用,这是我解决它的方法:

将此添加到<application>清单中的标签

android:logo="@drawable/logo"

注意:你的logoicon不是一回事!

然后创建drawable/logo.xml

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <item
        android:drawable="@drawable/actual_logo_or_icon_image"
        android:left="30dp"/> <!-- add other margins here -->
</layer-list>
于 2013-09-12T12:03:15.313 回答
0

如果您使用 Action Bar Sherlock,请检查以下答案:Padding menu items in action bar sherlock

此外,您可以为主页图标编写类似的内容:

ImageView im = ( ImageView ) findViewById ( android.R.id.home );
im.setPadding ( left, top, right, bottom );
于 2013-09-12T12:13:47.683 回答