我没有使用Tabhost(我不想)并且我已经尝试了一切:
这是我的动作栏,我正在使用带有黑暗动作栏的全息灯
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
我尝试使用这个有用的网站但没有成功。
我也试过
失败了actionBar.setStackedBackgroundDrawable(new ColorDrawable(getResources().getColor(R.color.color_brown_dark)));
这是我的styles.xml
<style name="AppBaseTheme" parent="android:Theme.Light">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
<item name="android:actionBarStyle">@style/Lemonbar</item>
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>
Lemonbar是覆盖Theme.Holo.Light.DarkActionBar的样式,它是使用android动作栏样式生成器创建的。 当我启动应用程序时,操作栏仍然与以前相同,就像未应用新样式一样