将可绘制对象设置为背景以查看未返回可绘制对象

时间:2018-11-30 10:45:14

标签: android xml kotlin

enter image description here我一直在此之前将可绘制对象作为背景添加到我的视图中。但是最近,当我向任何视图(例如LinearLayout,视图,TextView)添加可绘制背景作为背景时,出现此错误

CREATE USER xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 
IDENTIFIED BY xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
DEFAULT TABLESPACE USERS TEMPORARY TABLESPACE TEMP QUOTA UNLIMITED ON USERS;
GRANT CREATE SESSION, RESOURCE, CREATE VIEW, CREATE MATERIALIZED VIEW, CREATE SYNONYM, UNLIMITED TABLESPACE TO xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx;

我已经刷新,清理,构建,但无法正常工作。唯一的工作方式是如果我添加多个可绘制的API文件夹,例如 error: resource drawable/rectangle_white (aka merchant.com.our.nextlounge:drawable/rectangle_white) not found. Message{kind=ERROR, text=error: resource drawable/rectangle_white (aka merchant.com.our.nextlounge:drawable/rectangle_white) not found., sources=[C:\Users\USER\Documents\Exolve Project\NextLounge\app\src\main\res\layout\activity_dash_auth.xml:45], original message=, tool name=Optional.of(AAPT)}

使其正常工作。 请如何解决此问题。

drawable-v21,drawable-v22,drawable-v23

下面是矩形_white.xml

<?xml version="1.0" encoding="utf-8"?>
 <android.support.constraint.ConstraintLayout 
  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"
tools:context=".activity.DashAuthActivity">
<include layout="@layout/background_auth"/>

  <include layout="@layout/logo"
   android:id="@+id/logo"
   android:layout_height="wrap_content"
   android:layout_width="wrap_content"
   app:layout_constraintLeft_toLeftOf="parent"
   app:layout_constraintRight_toRightOf="parent"
   app:layout_constraintTop_toTopOf="parent"/>
<TextView
    android:id="@+id/text"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:text="@string/intro_text"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toBottomOf="@id/logo"
    app:layout_constraintBottom_toBottomOf="@id/linearLine"
    android:layout_margin="20sp"
    app:layout_constraintVertical_bias="0.0"
    android:padding="8dp"
    android:textAlignment="center"
    android:textColor="@color/white"/>
<LinearLayout
    android:id="@+id/linearLine"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:weightSum="4"
    android:padding="4dp"
    android:layout_margin="24dp"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintVertical_bias="0.96"
    app:layout_constraintBottom_toTopOf="@+id/linearButton"
    android:layout_marginBottom="20sp">
    <View
        android:layout_width="0dp"
        android:layout_height="6dp"
        android:background="@drawable/rectangle_white"
        android:layout_weight="2.5"/>
    <View
        android:layout_width="0dp"
        android:layout_height="1dp"
        android:layout_weight="0.3"/>
    <View
    android:layout_width="0dp"
    android:layout_height="6dp"
    android:background="@drawable/rectangle_white_line"
    android:layout_weight="1.2"/>
</LinearLayout>
 <LinearLayout
android:id="@+id/linearButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="4"
android:padding="4dp"
android:layout_margin="20dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintBottom_toBottomOf="parent">

   <Button
    android:id="@+id/buttonSignIn"
    android:layout_width="0dp"
    android:layout_height="48dp"
    android:layout_weight="2"
    android:layout_marginRight="4dp"
    android:layout_marginEnd="4dp"
    android:text="@string/sign_in"
    android:textColor="@color/black"
    android:textAllCaps="false"
    android:textSize="18sp"
    android:background="@color/white"/>
    <Button
    android:id="@+id/buttonSignUp"
    android:layout_width="0dp"
    android:layout_height="48dp"
    android:layout_weight="2"
    android:layout_marginLeft="4dp"
    android:layout_marginStart="4dp"
    android:text="@string/sign_up"
    android:textAllCaps="false"
    android:textSize="18sp"
    android:textColor="@color/white"
    android:background="@color/orange"/>

Error message during Build

2 个答案:

答案 0 :(得分:0)

在运行时,将选择的可绘制对象是最适合该设备的android版本的可绘制对象,
除非只有1个host文件夹,在这种情况下,只有1个可绘制对象。
由于drawabledrawable-v21drawable-v22等中的其他版本可绘制对象均有效,因此
但主drawable-v23中的可绘制对象不起作用,这意味着后者可绘制是问题所在。
我建议您检查它是否存在xml结构错误,或者是否有可能重新创建它。

答案 1 :(得分:0)

嗨,谢谢大家的有益帮助。我要做的就是删除整个包含所有内容的drawable文件夹,然后我创建了一个新的drawable文件夹并重新创建了所有文件。 一旦我做到了,我就运行它,它在所有android设备上都能正常工作。这样我就不必为不同的API版本创建特定的文件夹