gpt4 book ai didi

android - 从抽屉导航 ActionBar 中删除应用程序图标不起作用

转载 作者:行者123 更新时间:2023-11-29 14:21:39 26 4
gpt4 key购买 nike

我正在开发一个具有设计要求的应用程序,因为它应该只在 ActionBar 上有标题,而不是应用程序图标。我尝试了从 StackOverflow 找到的各种解决方案,例如

getActionBar().setDisplayUseLogoEnabled(false);

getActionBar().setDisplayShowHomeEnabled(false);

getActionBar().setIcon(null);

但是到目前为止这些都不起作用,即使我试图通过制作透明的 ic_launcher 图标并将其放入 manifest.xml 来进行破解/修复,但它会导致应用程序安装图标变得透明。请帮忙

getActionBar().setDisplayShowHomeEnabled(false);

在 4.4 kitkat 中完美运行,但在像这样的降级版本中显示后退箭头 enter image description here

我需要它在每台设备上都能正常工作

enter image description here

最佳答案

请尝试添加这个..

    getActionBar().setDisplayHomeAsUpEnabled(true);

getActionBar().setHomeButtonEnabled(true);

然后在你的主题中添加

<style name="CustomActionBarTheme"
parent="@android:style/Theme.Holo.Light.DarkActionBar">
<item name="android:actionBarStyle">@style/ActionBar</item
</style>

<!-- ActionBar styles -->
<style name="ActionBar"
parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse">
<item name="android:icon">@android:color/transparent</item>


</style>

关于android - 从抽屉导航 ActionBar 中删除应用程序图标不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27034564/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com