Android如何更改概述标签颜色?

时间:2016-02-03 07:34:47

标签: android android-5.0-lollipop

我有我的style.xml

<style name="AppTheme" parent="Theme.AppCompat.Light">
        <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" />

和我的color.xml:

<color name="colorPrimary">#FC7E0D</color>
<color name="colorPrimaryDark">#E07514</color>
<color name="colorAccent">#EF4B07</color>

这是我的概述 image

我想让我的标签变成白色,但是怎么样?我知道TaskDescription,但在这种情况下,taskdescription对我没有帮助。

我的manifest.xml:

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

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

</manifest>

MainActivity.class:

public class MainActivity extends AppCompatActivity
        implements NavigationView.OnNavigationItemSelectedListener {

    private Toolbar toolbar;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);

        DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
        ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
                this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
        drawer.setDrawerListener(toggle);
        toggle.syncState();

        NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
        navigationView.setNavigationItemSelectedListener(this);

        navigationView.getMenu().performIdentifierAction(R.id.nav_main, 0);
    }

    ...other code...

MainActivity.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout 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:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:openDrawer="start">

    <android.support.design.widget.CoordinatorLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <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>

    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <FrameLayout
            android:id="@+id/container_body"
            android:layout_width="fill_parent"
            android:layout_height="match_parent" />

    </android.support.v4.widget.NestedScrollView>

</android.support.design.widget.CoordinatorLayout>

    <android.support.design.widget.NavigationView
        android:id="@+id/nav_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        app:headerLayout="@layout/nav_header_main"
        app:menu="@menu/activity_main_drawer" />

</android.support.v4.widget.DrawerLayout>

1 个答案:

答案 0 :(得分:0)

如果您使用的是tooldbar,则可以更改活动中的颜色。和风格,但我建议你从活动中改变它。

在下面的代码工具栏ID是ab_tool,您可以在xml中提供任何内容 在活动中保留以下代码。

Toolbar toolbar = (Toolbar) findViewById(R.id.ab_tool);
setSupportActionBar(toolbar);        
toolbar.setTitleTextColor(Color.WHITE);

如果ActionBar没有工具栏,则需要更改ActionBar TextView文字颜色

 int titleTextViewResourceID = getResources().getIdentifier("action_bar_title", "id", "android");
        TextView txtActionBarTitle = (TextView) findViewById(titleTextViewResourceID);
        txtActionBarTitle.setTextColor(Color.WHITE);

<强>更新

AFAIK是默认行为,显示在最近的应用上。

标题颜色默认来自内部,基于动作栏或工具栏样式中给出的colorPrimary

系统会根据colorPrimary在内部提供标题颜色。

系统会将ActionBar设置为关闭按钮&amp;应用程序图标在最近的应用程序缩略图中甚至在你的应用程序中你没有使用ActionBar,任何工具栏样式。

案例1 在这里,如果你给出深色的红色(红色比例更多)你提出的问题比在最近的应用程序中将黑色颜色作为标题颜色,即使你给标题文字添加白色来自xml或运行时的运行时。

Sample Image

<color name="colorPrimary">#FC7E0D</color>
    <color name="colorPrimaryDark">#E07514</color>
    <color name="colorAccent">#EF4B07</color>

<style name="AppThemeSliderToolbar" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="colorPrimary">@color/slider_bg_primary</item>
    <item name="colorPrimaryDark">@color/slider_bg_primary_dark</item>
</style>

案例2 如果您为colorPrimary提供浅色,那么系统将在内部采用黑色。

<style name="AppThemeSliderToolbar" parent="Theme.AppCompat.NoActionBar">
    <item name="colorPrimary">@color/my_primary_light</item>
    <item name="colorPrimaryDark">@color/slider_bg_primary_dark</item>
</style>

<color name="slider_bg_primary_dark">#FF5722</color>
<color name="my_primary_light">#B3E5FC</color>

Sample Image case2

如何将其更改为白色 使用以下颜色组合可在最近的应用操作栏上获得白色。

<color name="slider_bg_primary">#ff5b45</color>
<color name="slider_bg_primary_dark">#FF5722</color>

 <style name="AppThemeSliderToolbar" parent="Theme.AppCompat.NoActionBar">
        <item name="colorPrimary">@color/slider_bg_primary</item>
        <item name="colorPrimaryDark">@color/slider_bg_primary_dark</item>
 </style>

清单中使用的AppThemeSliderToolbar主题用于上述所有情况的活动

White Color TItle