我正在尝试将我的应用和actionBar的背景颜色更改为不同的颜色:
<!-- Base application theme. -->
<style name="actionBar" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/veniceblue</item>
</style>
<style name="AppTheme" parent="Theme.AppCompat">
<item name="android:background">@drawable/background_template</item>
<item name="actionBarTheme">@color/veniceblue</item>
</style>
但是在我的清单文件中我添加:
android:theme="@style/actionBar">
但我不确定如何同时添加背景? 我确实希望为整个应用程序设置它?
答案 0 :(得分:0)
对不起,如果我不理解你的问题(我只是一个初学者试图学习和帮助) 你可以使用android.support.v7.widget.Toolbar
layout.xml
<android.support.design.widget.AppBarLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:theme="@style/AppTheme.AppBarOverlay"
android:id="@+id/appBarLayout">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
和style.xml
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
<style name="AppCompaTheme" parent="Theme.AppCompat.Light">
<item name="colorPrimary">@color/primaryColor</item>
<item name="colorPrimaryDark">@color/primaryColorDark</item>
<item name="android:textColorPrimary">@android:color/white</item>
<item name="android:windowNoTitle">true</item>
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
</style>