原色(有时)变得透明

时间:2014-11-30 05:12:49

标签: android android-theme android-5.0-lollipop android-appcompat material-design

我正在开发最新的SDK版本(API 21)和支持库21.0.2,并且在尝试实施新的Material Design指南时遇到了麻烦。

Material Design说我需要拥有primary coloraccent color并将其应用于我的应用。但有时当我打开应用程序时primary color在某些小部件中变得透明,它会恢复正常,直到我关闭应用程序(使用后退按钮)并再次启动它。

以下是我的工具栏中primary color透明的示例。

enter image description here

我使用Teal 500作为我的主要颜色,正如您所看到的,它仅在android.support.v7.widget.Toolbar中是透明的。这也发生在我的Navigation Drawer和(有时候,有时没有)另一个随机小部件中。

这是我的工具栏

<android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/primary"
        android:minHeight="?attr/actionBarSize"
        app:theme="@style/ThemeOverlay.AppCompat.ActionBar" >

我已尝试使用@color/primary?attr/colorPrimary但没有成功。

这是我的Theme(我不知道它是否相关,但以防万一):

<style name="AppBaseTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="colorPrimary">@color/primary</item>
    <item name="colorPrimaryDark">@color/primary_dark</item>     
    <item name="colorAccent">@color/accent</item>
    <item name="colorAccent">@color/accent</item>
    <item name="android:textColorPrimary">#fff</item>

    <item name="windowActionModeOverlay">true</item>
    <item name="android:textViewStyle">@style/Widget.TextView.White</item>
</style>

这恰好与primary color相同,accent color工作正常。我的设备运行4.2.2并且我还没有检查过更多设备。

带工具栏的活动

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

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <android.support.v7.widget.Toolbar
            android:id="@+id/my_awesome_toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="?attr/colorPrimary"
            android:minHeight="?attr/actionBarSize"
            app:theme="@style/ThemeOverlay.AppCompat.ActionBar" />

        <FrameLayout
            android:id="@+id/container"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            tools:ignore="MergeRootFrame" />
    </LinearLayout>

    <!-- The navigation drawer -->

    <LinearLayout
        android:id="@+id/navdrawer"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        android:orientation="vertical" >

        <!-- IN THIS IT ALSO HAPPENS -->
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:paddingLeft="16dp"
            android:paddingRight="16dp"
            android:paddingBottom="16dp"
            android:orientation="vertical"
            android:background="@color/primary" >

            <!-- Some stuff -->

        </LinearLayout>

        <ListView
            android:id="@+id/left_drawer"
            android:layout_height="match_parent"
            android:layout_width="match_parent"
            android:background="@color/black_light"
            android:divider="@color/grey"
            android:choiceMode="singleChoice" />
    </LinearLayout>

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

2 个答案:

答案 0 :(得分:4)

问题与处理工具栏背景的方式有关。它在工具栏的所有实例之间共享,因此如果您倾向于更改工具栏的背景alpha,则更改在其他屏幕上重复使用的drawable的alpha。

确保您没有使用工具栏的背景属性进行操作,而是在每次要自定义时设置新的背景颜色/可绘制。

答案 1 :(得分:0)

也许这些支持库错误与您的问题有关。

https://code.google.com/p/android/issues/detail?id=78289
https://code.google.com/p/android/issues/detail?id=78346

可悲的是,仍未在21.0.2中修复