ANDROID: ошибка надувания класса android.support.design.widget.AppBarLayout - PullRequest
0 голосов
/ 22 марта 2019

Я добавил панель инструментов в свой макет, и теперь я получаю эту ошибку при запуске:

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.myapp/mainactivity.MainActivity}: android.view.InflateException: Binary XML file line #9: Binary XML file line #2: Error inflating class android.support.design.widget.AppBarLayout

Это мой макет активности:

<androidx.constraintlayout.widget.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">

    <include layout="@layout/appbar"/>

</androidx.constraintlayout.widget.ConstraintLayout>

, и это мой макет панели приложений:

<android.support.design.widget.AppBarLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/app_bar"
    android:theme="@style/Theme.AppCompat.Light.DarkActionBar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        android:elevation="4dp"
        android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light" >

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

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

В моей деятельности onCreate ():

Toolbar toolbar = findViewById(R.id.toolbar);
        if (toolbar != null) {
            setSupportActionBar(toolbar);
            toolbar.setTitle(getTitle());
        }

Я не могу понять, почему.Есть предложения?

Ответы [ 2 ]

3 голосов
/ 22 марта 2019

Вам нужно использовать

<com.google.android.material.appbar.AppBarLayout
<androidx.appcompat.widget.Toolbar

Вместо

<android.support.design.widget.AppBarLayout
<android.support.v7.widget.Toolbar

КОД ОБРАЗЦА

<com.google.android.material.appbar.AppBarLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/app_bar"
    android:theme="@style/Theme.AppCompat.Light.DarkActionBar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <androidx.appcompat.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        android:elevation="4dp"
        android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light" >

    </androidx.appcompat.widget.Toolbar>

</com.google.android.material.appbar.AppBarLayout>

Убедитесь, что вы добавили ниже dependencies

implementation 'com.google.android.material:material:1.0.0'
1 голос
/ 22 марта 2019

В дополнение к ответу @ NileshRathod ошибки, касающиеся раздувания классов, возникают почти только из-за неправильных зависимостей в файле уровня приложения build.gradle.

Вы должны добавить следующую зависимость в файл уровня приложения build.gradle файла:

implementation 'com.android.support:design:23.1.0'

Ну, я предлагаю вам использовать Material или AndroidX зависимости

...