我的问题很奇怪(我认为)。
使用AppCompat,我对?attr / colorPrimary的引用无效。
colors.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">@color/primary_material_dark</color>
<color name="colorPrimaryDark">@color/primary_dark_material_dark</color>
<color name="test">#ff2800</color>
</resources>
styles.xml:
<resources>
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:colorPrimary">@color/primary_material_dark</item>
<item name="android:colorPrimaryDark">@color/primary_dark_material_dark</item>
</style>
</resources>
activity_main.xml中:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity"
android:background="?attr/colorPrimary">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="@color/colorPrimary"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
/>
</android.support.design.widget.AppBarLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="COLORCLOR"
android:background="?attr/colorPrimary"/>
</LinearLayout>
</LinearLayout>
看看它的样子:
但是当我用实际的颜色参考替换?attr / colorPrimary引用时,一切似乎都能正常工作。真的很困惑,尝试从工具栏中删除主题和popupTheme属性,仍然无法正常工作。
PS。 ?attr / colorPrimaryDark工作得很好
答案 0 :(得分:11)
从您的样式中删除android
标记,以便您可以使用材质设计主题:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/primary_material_dark</item>
<item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
</style>
答案 1 :(得分:3)
在{。1}}
部分的build.gradle(模块:应用)中添加implementation 'com.android.support:design:26.1.0'
dependencies {}
答案 2 :(得分:2)
Pre-Lollipop上存在问题。您可以更改
android:background="?attr/colorPrimary"
而不是
app:background="?attr/colorPrimary"
它会正常工作。
答案 3 :(得分:1)
尝试工具栏
android:background="?android:attr/colorPrimary"
和样式:
<item name="colorPrimary">@color/primary</item>
答案 4 :(得分:0)
我面临同样的问题,然后我找到你需要删除这一行的解决方案
<item name="android:statusBarColor">@android:color/transparent</item>
它覆盖了colorPrimaryDark颜色,基本上将其从状态栏中删除
来自style.xml
文件
答案 5 :(得分:0)
在gradle中更新到最新的库。点击红色灯泡进行更新。
implementation 'com.android.support:design:27.1.1'
如果使用的是27.1.1,请确保所有其他库也使用的是27.1.1。