<?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
中,但没有运气
答案 0 :(得分:1)
您应该在<yourproject>/res/*
中放置主题后添加主题:
<!-- ... -->
<application
android:name="app.package"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/Theme.Titanium">
<!-- ... -->
答案 1 :(得分:1)
您正在使用:android:Theme.NoTitleBar.Fullscreen
,尝试使用android:style/Theme.Holo
代替并在清单文件中设置您的主题,如throrin19所示。
答案 2 :(得分: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。
UPDATE:您可以在Manifest中为所有应用程序使用CustomStyle。就这么做:
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/CustomStyle">
或者用于每个活动:
<activity
android:name="MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@style/CustomStyle">
祝你好运!