我在我的android项目上为我的操作栏创建了一个自定义样式:
<!-- Style for the Login Menu Toolbar -->
<style name="LoginMenu">
<item name="android:colorBackground">@color/menu</item>
<item name="android:textColor">@color/menuFont</item>
</style>
我有一个Action Bar.xml,我想添加这种风格:
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
</menu>
正如您所看到的,带有操作栏的xml文件现在是空的,我无法确定如何为其添加样式...
我的目标是创建一个具有不同背景颜色的自定义操作栏,我该怎么做?
答案 0 :(得分:2)
这对你有用。您可以在colors.xml中更改工具栏的颜色。 colorPrimary用于ToolBar,colorPrimaryDark用于状态栏
<强> activity_main.xml中强>
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.newapp.toolbarwork.MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<!-- <include layout="@layout/content_main" />-->
</android.support.design.widget.CoordinatorLayout>
<强> MainActivity.java 强>
package com.newapp.toolbarwork;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.View;
import android.view.Menu;
import android.view.MenuItem;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
colors.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#3F51B5</color>
<color name="colorPrimaryDark">#303F9F</color>
<color name="colorAccent">#FF4081</color>
</resources>
<强> styles.xml 强>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
答案 1 :(得分:1)
我会推荐以下内容。您需要确保AppCompat
文件中存在gradle.build
库相关性(即compile 'com.android.support:appcompat-v7:23.1.1'
,示例gradle文件为https://github.com/angular/angular/issues/5632#issuecomment-167026172)
首先,确保您的应用主题有Theme.AppCompat.*
个父母。然后,为您的操作栏指定首选颜色的colorPrimary
项。例如,在styles.xml
:
<resources>
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorPrimary">@color/my_action_bar_color</item>
</style>
</resources>
其次,确保AppTheme
中manifest
是您的应用主题。
最后,您的Activity
课程需要延长AppCompatActivity
而不是Activity
。
答案 2 :(得分:0)
只需添加:
android:theme="@styles/LoginMenu"