Как импортировать много графических ресурсов одновременно в папку для рисования или любую другую папку ресурсов в Android - PullRequest
0 голосов
/ 09 мая 2019

У меня есть несколько изображений, которые находятся в разных папках с именами hdpi, mdpi, xhdpi, xxhdpi и xxxhdpi. Я хочу импортировать все эти изображения в мою папку drawable проекта.

Я уже пытался вручную создать папки drawable для каждого типа, и это работало до тех пор, пока я не запустил проект, после того как я щелкнул по нему, он показал ошибку

"android.view.InflateException: строка двоичного XML-файла # 36: двоичный XML строка файла # 36: Ошибка надувания класса ImageView "

Я застрял в этом на два дня.

<?xml version="1.0" encoding="utf-8"?>

    <RelativeLayout 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=".MainActivity"
    android:orientation="vertical">


    <ImageView
        android:id="@+id/wc_background"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/wc_background"/>

    <ImageView
        android:id="@+id/parliament"
        android:layout_width="200dp"
        android:layout_height="200dp"
        android:src="@drawable/parliament_image"
        android:layout_centerInParent="true"
        tools:ignore="MissingConstraints" />
    <ImageView
        android:id="@+id/border_circle"
        android:layout_width="230dp"
        android:layout_height="230dp"
        android:layout_centerInParent="true"
        android:src="@drawable/border_circle"/>
    <RelativeLayout
        android:id="@+id/rl_name"
        android:orientation="horizontal"
        android:layout_below="@+id/border_circle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <ImageView
            android:id="@+id/left_line"
            android:layout_width="60dp"
            android:layout_height="wrap_content"
            android:layout_marginTop="20dp"
            android:layout_marginLeft="8dp"
            android:src="@drawable/left_line"
            android:layout_below="@+id/border_circle"
            tools:ignore="NotSibling"/>
        <TextView
            android:id="@+id/tv_welcome"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="20dp"
            android:text="@string/coi"
            android:textStyle="bold"
            android:textAllCaps="true"
            android:textColor="#021e4c"
            android:textSize="20sp"
            android:layout_toEndOf="@+id/left_line"
            android:layout_toRightOf="@+id/left_line"
            tools:targetApi="lollipop" />
        <ImageView
            android:id="@+id/right_line"
            android:layout_width="60dp"
            android:layout_height="wrap_content"
            android:layout_marginTop="20dp"
            android:layout_marginRight="6dp"
            android:layout_below="@+id/border_circle"
            android:layout_toEndOf="@+id/tv_welcome"
            android:src="@drawable/right_line"
            tools:ignore="NotSibling"
            android:layout_toRightOf="@+id/tv_welcome" />
    </RelativeLayout>
    <ImageView
        android:layout_width="240dp"
        android:layout_marginLeft="68dp"
        android:layout_height="wrap_content"
        android:layout_below="@id/rl_name"
        android:src="@drawable/coi_underline"
        tools:ignore="NotSibling" />

</RelativeLayout>
...