Wear OS无法识别自定义颜色

时间:2018-06-10 15:48:28

标签: android android-layout wear-os android-resources android-color

我正在android studio中开发一个磨损应用程序。我在

中定义了我的颜色

res-> color-> colors.xml(Here is my folder structre

当我打开手机或平板电脑的新项目时,colors.xml会被Android工作室放置在values文件夹中。但是这次穿戴项目安卓工作室创建了一个名为color的新文件夹,并将colors.xml自动放入其中。

问题是我不能使用colors.xml中定义的颜色来进行磨损项目。

colors.mxl

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

<color android:name="colorPrimary">#006064</color>
<color android:name="colorPrimaryDark">#004c40</color>
<color android:name="colorAccent">#82b1ff</color>
<color android:name="black_alpha_40">#66000000</color>

</selector>

activity_login.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.wear.widget.BoxInsetLayout
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:background="@color/dark_grey"
android:padding="@dimen/box_inset_layout_padding"
tools:context=".activities.LoginActivity"
tools:deviceIds="wear">


    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:padding="5dp"
        app:boxedEdges="all">
    <EditText
        android:id="@+id/loginEmailEditText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:hint="Email"
        android:inputType="textEmailAddress"
        android:layout_gravity="top"
        />

    <FrameLayout
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        >
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="top"
            android:src="@drawable/logo"
            android:tint="@color/colorAccent" --->THERE IS AN ERROR HERE
            />
    </FrameLayout>

    <EditText
        android:id="@+id/loginPasswordEditText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:hint="Parola"
        android:inputType="textPassword"
        android:layout_gravity="center"/>

    <ImageButton
        android:id="@+id/loginButton"
        android:background="@drawable/circular_button"
        android:layout_height="50dp"
        android:layout_width="50dp"
        android:src="@drawable/done_white"
        android:text="Giriş"
        android:onClick="attemptLogin"
        android:layout_gravity="bottom|center"/>
</FrameLayout>
</android.support.wear.widget.BoxInsetLayout>

如果我想在我的activity_login.xml文件中使用它们,则无法识别任何自定义颜色(colorPrimary,colorPrimaryDark等..)并且android studio会出现以下错误。

  

错误:找不到资源颜色/ colorAccent(又名com.muhendis.diabetwatch:color / colorAccent)。   消息{kind = ERROR,text = error:resource color / colorAccent(aka com.muhendis.diabetwatch:color / colorAccent)not found。,sources = [/ Users / muhendis / Documents / AndroidStudioProjects / DiabetWatch / app / src / main / res / layout / activity_login.xml:32],原始消息=,工具名称= Optional.of(AAPT)}

所以我的问题是如何在开发磨损应用程序时摆脱这个错误并定义自定义颜色?

修改

colors.xml不是colors.mxl。我拼错了。

1 个答案:

答案 0 :(得分:2)

你可以看到几个错误。目前尚不清楚你的代码中有多少是你的问题中有多少,但是修复这些并且我打赌它会工作:

  1. 您在某个时刻命名了文件colors.**mxl**。拼写很重要!
  2. 它必须位于res\values,而不是res\color