Та же ошибка «привязки ресурсов Android» для двух файлов differnet .xml в Android Studio

#android #xml

#Android #xml

Вопрос:

Каждый раз, когда я запускаю свое приложение, я получаю сообщение об ошибке «Сбой привязки ресурсов Android».

У меня разные объекты, и для всех из них я получаю сообщение об ошибке:

C:UsersSamuelAndroidStudioProjectsCarlschweinappsrcmainreslayoutactivity_main.xml:38 : ошибка: атрибут met_singleLineEllipse (он же com.example.carlschwein:met_singleLineEllipse) не найден.

Проблема, похоже, в приложении: met_singleLineEllipse=»true», но я должен сохранить его, и я не могу найти никакой связанной документации, которая могла бы мне помочь.

XML-ФАЙЛ ОДИН:

 <?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res"

    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="8dp"

    app:cardElevation="4dp">

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

        <com.rengwuxian.materialedittext.MaterialEditText
            android:id="@ id/edtNewUser"
            android:hint="User name"
            android:textColorHint="@color/colorPrimary"
            android:textColor="@color/colorPrimary"
            android:textSize="24sp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:met_baseColor="@color/colorPrimary"
            app:met_floatingLabel="highlight"
            app:met_primaryColor="@color/colorPrimary"
            app:met_singleLineEllipse="true"
            />

    </LinearLayout>

</android.support.v7.widget.CardView>
 

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"
    android:background="@color/colorPrimary"
    tools:context="com.example.carlschwein.MainActivity">


        <RelativeLayout

            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="8dp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toTopOf="parent" >

            <android.support.v7.widget.CardView
            xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:app="http://schemas.android.com/apk/res-auto"
            android:id="@ id/info_login"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="8dp"

            app:cardElevation="4dp"
            >

            <LinearLayout
                android:padding="16dp"
                android:orientation="vertical"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">

                <com.rengwuxian.materialedittext.MaterialEditText
                    android:id="@ id/edtPassword"
                    android:hint="Password"
                    android:textColorHint="@color/colorPrimary"
                    android:textColor="@color/colorPrimary"
                    android:textSize="24sp"
                    android:inputType="textPassword"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    app:met_baseColor="@color/colorPrimary"
                    app:met_floatingLabel="highlight"
                    app:met_primaryColor="@color/colorPrimary"
                    app:met_singleLineEllipse="true"
                    />

        </RelativeLayout>

</android.support.constraint.ConstraintLayout>
 

У кого-нибудь есть идеи, почему это может произойти / была ли моя ошибка?

Ответ №1:

Вы пробовали это (возможно, просто опечатка):

 app:met_singleLineEllipsis="true"
 

Метод из библиотеки Wiki