1

我想从我的操作栏中删除应用程序图标

我不想要主页图标,我想为我的其他图标腾出更多空间:) 现在其中 4 个向右对齐,当我按下设置键时,第五个仅显示在底部

我发现这个答案看起来很有希望

Open your styles.xml file and add below codes in your Actionbar style

<item name="android:displayOptions">showHome|homeAsUp|showTitle</item>
<item name="displayOptions">showHome|homeAsUp|showTitle</item>
<item name="android:icon">@android:color/transparent</item> 

问题是,我不知道他们所说的“你的动作栏风格”是什么

编辑: 在这里阅读了一些答案后,我对清单做了什么

<application
    android:allowBackup="true"
    android:debuggable="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/Theme.Sherlock.Light"
    android:theme="@style/CustomActionBarTheme"  >

在最后一行我得到这个错误:

Attribute "theme" bound to namespace "http://schemas.android.com/apk/res/android" was already specified for element "application".

这是我的styles.xml:

<style name="CustomActionBarTheme">
    <item name="displayOptions">showHome|homeAsUp|showTitle</item>
    <item name="android:icon">@android:color/transparent</item>
</style>

我也试过

    mActionBar.setDisplayHomeAsUpEnabled(false);
    mActionBar.setDisplayShowHomeEnabled(false);
    mActionBar.setDisplayShowTitleEnabled(false);
    mActionBar.setDisplayUseLogoEnabled(false);
    mActionBar.setHomeButtonEnabled(false);

它只会使主页图标不可见,但仍会占用空间。为什么他们在这里提供了5个非工作方法,有什么意义?为什么一定要这么沮丧。

4

2 回答 2

1

尝试这个,

<item name="android:icon">@drawable/ic_menu</item>
<item name="icon">@drawable/ic_menu</item>

所以最后我有这样的事情:

<resources>
<style name="AppTheme" parent="android:Theme.Light" />

<style name="WATheme" parent="Theme.Sherlock.Light">
    <item name="android:actionBarStyle">@style/WATheme.ActionBar</item>
    <item name="actionBarStyle">@style/WATheme.ActionBar</item>
    <item name="android:icon">@drawable/ic_menu</item>
    <item name="icon">@drawable/ic_menu</item>
</style>

<style name="WATheme.ActionBar" parent="Widget.Sherlock.Light.ActionBar.Solid">
    <item name="android:displayOptions">homeAsUp|showHome|showTitle</item>
    <item name="displayOptions">homeAsUp|showHome|showTitle</item>
</style>
</resources>
于 2013-10-12T07:21:07.950 回答
0

我通过以下方式解决了这个问题: - 删除了我的设置图标 - 然后让我的主页图标看起来像一个设置图标

现在我必须找到一种方法让 Home 图标打开导航抽屉,我还必须找到一种方法来移除 Home 按钮右侧的巨大空白区域,以便我的图标均匀分布。

于 2013-10-12T09:32:27.313 回答