我想从我的操作栏中删除应用程序图标
我不想要主页图标,我想为我的其他图标腾出更多空间:) 现在其中 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个非工作方法,有什么意义?为什么一定要这么沮丧。