当我使用这种风格时,我想改变酒吧的颜色:
<style name="AppBaseTheme" parent="@style/Theme.AppCompat.Light" >
<item name="android:windowNoTitle">true</item>
<item name="android:windowActionBar">false</item>
</style>
例如它应该看起来像Android 5中的系统计算器,我的意思是顶部的栏是蓝色。
答案 0 :(得分:1)
你可以使用
<item name="background">@color/actionbar_background_color</item>
答案 1 :(得分:0)
您是在谈论工具栏吗?如果是,则在项目中实现以下xml:
?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/appBar"
android:background="@color/colorPrimary"
app:theme="@style/MyCustomTheme"
android:layout_width="match_parent"
android:layout_height="50dp">
</android.support.v7.widget.Toolbar>
在活动中将您的活动扩展到ActionBarActivity,然后在onCreate()中使用以下代码:
ToolBar toolbar = (Toolbar) findViewById(R.id.appBar);
setSupportActionBar(toolbar);
确保在colors.xml文件中为colorPrimary属性指定蓝色,或者如果不使用colors.xml文件,则可以直接给出蓝色值。
答案 2 :(得分:0)
使用appCompat21
并设置此样式:
<style name="Theme.MyTheme" parent="Theme.AppCompat.Light">
<!-- colorPrimary is used for the default action bar background -->
<item name="colorPrimary">@color/my_color</item>
<!-- colorPrimaryDark is used for the status bar -->
<item name="colorPrimaryDark">@color/my_darker_color</item>
</style>
更多信息here。