0
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.Titanium" parent="android:Theme.NoTitleBar.Fullscreen">
    <item name="android:windowBackground">@drawable/background</item>
</style>
</resources>

如何使用 theme.xml 自定义我的 ActionBar 组件。我试图生成这些文件并确实放置在我的 中platform/android/res folder,但没有运气

http://jgilfelt.github.com/android-actionbarstylegenerator/#name=ActionBar&compat=holo&theme=light&actionbarstyle=solid&backColor=ffffff%2C100&secondaryColor=1f6e0d%2C100&tertiaryColor=F2F2F2%2C100&accentColor=fafffb%2C100

4

3 回答 3

1

放置后,您应该在清单中添加主题<yourproject>/res/*

<!-- ... -->

<application
    android:name="app.package"
    android:icon="@drawable/icon"
    android:label="@string/app_name"
    android:theme="@style/Theme.Titanium">

<!-- ... -->
于 2013-01-04T14:17:48.563 回答
1

您正在使用 : android:Theme.NoTitleBar.Fullscreen,尝试android:style/Theme.Holo改用并按照 throrin19 的建议在清单文件中设置您的主题。

于 2013-01-04T14:26:39.153 回答
1

这样做:

  <style name="CustomStyle" parent="@android:style/Theme.Holo.Light">
        <item name="android:actionBarStyle">@style/CustomActionBar</item>
  </style>

  <style name="CustomActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
        <item name="android:background">@drawable/ANY_DRAWABLE</item>
        <item name="android:displayOptions">useLogo|showHome</item>
        ...
        <item name="PARAM">VALUE</item>
  </style>

在 CustomActionBar 样式中,您可以设置 ActionBar 参数。在您的活动中使用 CustomStyle。

更新: 您可以在 Manifest 中为所有应用程序使用 CustomStyle。去做就对了 :

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/CustomStyle">

或用于每个 Activity :

 <activity
     android:name="MainActivity"
     android:label="@string/app_name" 
     android:screenOrientation="portrait"
     android:theme="@style/CustomStyle">

祝你好运!

于 2013-01-04T14:43:07.827 回答