android.view.InflateException: строка двоичного XML-файла # 27: android.support.design.widget.TextInputEditText не может быть приведена к android.view.ViewGroup. - PullRequest
0 голосов
/ 14 февраля 2019

Я создаю макет входа в систему, но когда я пытаюсь написать эту строку

setContentView(R.layout.activity_login);

, он показывает мне ошибку

ERROR: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.look.instragramclone/com.example.look.instragramclone.Likes.LikesActivity}: android.view.InflateException: Binary XML file line #27: android.support.design.widget.TextInputEditText cannot be cast to android.view.ViewGroup

Я не могу найти проблему.я добавляю соответствующие коды

Я пытался добавить эти библиотеки:

реализация fileTree (dir: 'libs', include: ['* .jar']) реализация 'com.android.support:appcompat-v7: 28.0.0 '

// Библиотека поддержки разработки для реализации макета координатора' com.android.support:design:28.0.0'

реализация 'com.github.ittianyu:BottomNavigationViewEx: 2.0.2 '

// Реализация кругового изображения' de.hdodenhof: circleimageview: 3.0.0 '

// реализация универсального загрузчика изображений' com.nostra13.universalimageloader: universal-image-loader: 1.9.5 '

схема входа в систему:

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

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:paddingTop="55dp"
        android:paddingLeft="25dp"
        android:paddingRight="25dp">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="70dp"
            android:src="@drawable/instagram_logo"
            android:layout_gravity="center"
            android:layout_marginBottom="25dp"/>

        <android.support.design.widget.TextInputEditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp"
            android:layout_marginBottom="8dp">

            <EditText
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:inputType="textEmailAddress"
                android:hint="Email"
                android:id="@+id/input_email"/>

        </android.support.design.widget.TextInputEditText>

        <android.support.design.widget.TextInputEditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp"
            android:layout_marginBottom="8dp">

            <EditText
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:inputType="textPassword"
                android:hint="Password"
                android:id="@+id/input_password"/>

        </android.support.design.widget.TextInputEditText>

        <android.support.v7.widget.AppCompatButton
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="25dp"
            android:text="Login"
            android:id="@+id/btn_Login"
            android:padding="12dp"
            android:background="@drawable/white_rounded_btn"/>

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="25dp"
            android:text="No account yet? Create one"
            android:gravity="center"
            android:textSize="16dp"
            android:id="@+id/link_singup"
            android:textColor="@color/blue"/>

    </LinearLayout>

    <ProgressBar
        android:layout_width="200dp"
        android:layout_height="200dp"
        android:id="@+id/loginRequestLoadingProgressBar"
        android:layout_centerInParent="true"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Pleasr wait..."
        android:textColor="@color/black"
        android:textSize="20sp"
        android:layout_alignBottom="@+id/loginRequestLoadingProgressBar"
        android:layout_alignStart="@id/loginRequestLoadingProgressBar"
        android:layout_alignEnd="@id/loginRequestLoadingProgressBar"/>


</RelativeLayout>

java:

private static final String TAG = "LikesActivity";

private Context mContext = LikesActivity.this;

private static final int ACTIVITY_NO = 3;


@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_login);
    -->Note: this line shows the error

    //setupNavigationView();
}
/***BottomNavigationView setup***/

private void setupNavigationView(){

    BottomNavigationViewEx bottomNavigationViewEx = findViewById(R.id.bottomNavViewBar);
    BottomNavigationViewHelper.setupBottomNavigationView(bottomNavigationViewEx);
    BottomNavigationViewHelper.enableNavigation(mContext,bottomNavigationViewEx);
    Menu menu = bottomNavigationViewEx.getMenu();
    MenuItem menuItem = menu.getItem(ACTIVITY_NO);
    menuItem.setChecked(true);
}

Ответы [ 2 ]

0 голосов
/ 14 февраля 2019

Вы не можете рассматривать TextInputEditText как ViewGroup, поместив дочерний элемент внутри следующего xml -

<android.support.design.widget.TextInputEditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:layout_marginBottom="8dp">

        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:inputType="textEmailAddress"
            android:hint="Email"
            android:id="@+id/input_email"/>

    </android.support.design.widget.TextInputEditText>

Вы должны использовать его как представление, используя -

        <android.support.design.widget.TextInputEditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:layout_marginBottom="8dp"/> // close this tag here
0 голосов
/ 14 февраля 2019

используйте TextInputLayout вместо TextInputEdittext.

приведенный ниже код предназначен для использования textinputlayout:

<android.support.design.widget.TextInputLayout
   android:id="@+id/usernameWrapper"
   android:layout_width="match_parent"
   android:layout_height="wrap_content">

<EditText
    android:id="@+id/username"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:inputType="textEmailAddress"
    android:hint="Email"/> 

</android.support.design.widget.TextInputLayout>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...