如何改变钛合金动作栏背景颜色

时间:2015-05-12 17:26:06

标签: titanium titanium-alloy

我是钛开发的新手。我如何创建自定义合金主题或更改全息主题动作栏背景。如果您有解决方案,请帮我举个例子。

3 个答案:

答案 0 :(得分:1)

执行此操作的最佳方法是使用此“操作栏生成器”。它的作品令我惊叹。 ActionBar Generator

答案 1 :(得分:0)

您应该在Appcelerator论坛中查看this thread。简而言之:您可以创建一种样式,用于定义颜色并将其应用于操作栏。

答案 2 :(得分:0)

Android Themes documentation

示例:

平台/机器人/ RES /值/ builtin_themes.xml

 <!-- Works for Titanium SDK 3.2.x and earlier when built against Android 4.0x/API Level 14 -->
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <!-- Available for Android 4.0.x/API Level 14 and later -->
    <style name="LightDarkBar" parent="@android:style/Theme.Holo.Light.DarkActionBar"/> 
    <!-- Available for Android 3.0.x/API Level 11 and later -->
    <style name="Light" parent="@android:style/Theme.Holo.Light"/>
    <style name="Dark" parent="@android:style/Theme.Holo"/>
    <!-- Available for all Android versions -->
    <style name="OldLight" parent="@android:style/Theme.Light"/>
    <style name="OldDark" parent="@android:style/Theme.Black"/>
</resources>

修改tiapp.xml的Android部分

<android xmlns:android="http://schemas.android.com/apk/res/android">
    <manifest>
        <application android:theme="@style/LightDarkBar"/>
        <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="19"/>
    </manifest>
</android>