gpt4 book ai didi

android - 更改操作栏中的选项卡指示器颜色

转载 作者:太空狗 更新时间:2023-10-29 13:20:08 26 4
gpt4 key购买 nike

我知道这个问题以前被问过很多次,但我尝试了所有的解决方案,但没有任何效果。所以我决定遵循官方文档:https://developer.android.com/training/basics/actionbar/styling.html

我制作了文件themes.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- the theme applied to the application or activity -->
<style name="CustomActionBarTheme"
parent="@android:style/Theme.Holo.Light.DarkActionBar">
<item name="android:actionBarStyle">@style/MyActionBar</item>
<item name="android:actionBarTabStyle">@style/MyActionBarTabs</item>
</style>

<!-- ActionBar styles -->
<style name="MyActionBar"
parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse">
<item name="android:background">@drawable/actionbar_background</item>
</style>

<!-- ActionBar tabs styles -->
<style name="MyActionBarTabs"
parent="@android:style/Widget.Holo.ActionBar.TabView">
<!-- tab indicator -->
<item name="android:background">@drawable/actionbar_tab_indicator</item>
</style>
</resources>

actionbar_background 只是带有实心填充的简单形状,并且可以正常工作。
但是指示灯仍然是蓝色的:
actionbar_tab_indicator - 这是从 http://jgilfelt.github.io/android-actionbarstylegenerator/ 生成的文件我还将生成的图像复制粘贴到可绘制文件夹中。第一个问题是 9-patch 文件不知何故错误,但我已经设法手动修复它们。

我在 AndroidManifest.xml 中设置主题:android:theme="@style/CustomActionBarTheme"

我也尝试过以编程方式更改颜色的解决方案,但它没有按预期工作。它不是小矩形,而是拉伸(stretch)以适合整个选项卡。

在最新的 android studio 中工作的任何解决方案(以编程方式或在 xml 中)都会很棒。但它必须看起来像原始标签,但颜色不同 - 在我的例子中是红色。

问候

最佳答案

我一直发现使用 Android Asset Studio 中的工具最容易,因为我不是特别喜欢图形化。该工具尤其与您要完成的工作非常相关:http://jgilfelt.github.io/android-actionbarstylegenerator/.全套工具可在 http://romannurik.github.io/AndroidAssetStudio/ 找到。.只需选择您想要的颜色/样式,下载 zip 文件,然后将文件复制/粘贴到您的项目中。然后在您的 AndroidManifest.xml 文件中,在包含您的 ActionBar 的 Activity 中引用您在生成器(您在网站上填写的第一个文本框)中选择的任何“样式名称”。因此,例如,如果您在生成器中调用您的样式“Custom_action_bar”,您可以将其添加到您的 Activity 中,如下所示:

<activity
android:name="com.company.appname.ActivityName"
android:label="@string/somename"
android:theme="@style/Theme.Custom_action_bar">
<!--the above line is all you need to add-->
</activity>

关于android - 更改操作栏中的选项卡指示器颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30002422/

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