设计Android操作栏

时间:2014-12-11 15:48:37

标签: android

我有一个新创建的项目,我要做的第一件事就是添加并设置动作栏的样式。我按照他们在官方教程中讲述的方式,甚至尝试了其他方式,但我无法使其工作。 经过多次尝试,我决定做一些非常基本的事情,但即使这样,我也无法让它发挥作用。 这就是我所拥有的:

styles.xml

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="@style/Theme.AppCompat.Light.DarkActionBar">
    <item name="android:actionBarStyle">@style/ActionBar</item>
</style>

<style name="ActionBar" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
    <item name="android:background">@color/blue</item>

</style>

的manifest.xml

<?xml version="1.0" encoding="utf-8"?>

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

另一个问题是@android:style / Theme.Holo,@ style / Theme.AppCompat.Light.DarkActionBar或者只是Theme.AppCompat.Light.DarkActionBar之间的区别是什么?

感谢。

2 个答案:

答案 0 :(得分:1)

根据Using the Material Theme training,材质主题(以及使用材料主题的反向端口/使用材料主题的AppCompat主题)使用colorPrimary为操作栏着色。因此,您的主题可以是:

<style name="AppTheme" parent="@style/Theme.AppCompat.Light.DarkActionBar">
    <item name="colorPrimary">@color/blue</item>
</style>

您可以在AppCompat v21 blog postthis pro-tip

中找到有关如何使用AppCompat / Material主题的更多详细信息

答案 1 :(得分:0)

我建议您使用此工具生成ActionBar个样式:

http://jgilfelt.github.io/android-actionbarstylegenerator/

祝你好运!