0

很抱歉,但我搜索并没有发现这件事很容易 =/,我从http://jgilfelt.github.io/android-actionbarstylegenerator/下载我的操作栏主题并将文件放在正确的位置,但没有发生当我执行我的应用程序时,操作栏是默认的,我把它放在样式中:

<style name="AppTheme" parent="Theme.AppCompat.Light">
    <item name="android:theme">@style/Theme.Barraacao</item>
</style>

我的主题名称是 Barraacao,我用 AppCompat 制作了我的 android 应用程序的主题,请有人给点建议?

4

1 回答 1

0

AppCompat 有更多 .Light 的主题,因此请尝试 @CommonsWare 评论或将您的主题直接放在清单中:

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.Barraacao">

对我来说没问题。

看:http ://www.androiduipatterns.com/2012/09/creating-custom-android-styles-easy-way.html

于 2014-01-21T17:41:55.187 回答