BottomNavigationView迁移到androidx后会膨胀错误 [英] BottomNavigationView inflate error after migrating to androidx

查看:991
本文介绍了BottomNavigationView迁移到androidx后会膨胀错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我尝试启动我的应用程序时,我的Mainactivity在 setContentView(R.layout.activity_main); 的oncreate()方法中抛出此错误:

When I try to launch my app, my Mainactivity throws this error in the oncreate() method at "setContentView(R.layout.activity_main);" :

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.sanchez.worldgramproject/com.example.sanchez.worldgramproject.Fragments.MainActivity}: android.view.InflateException: Binary XML file line #16: Binary XML file line #16: Error inflating class android.support.design.widget.BottomNavigationView

此错误在迁移到 androidx 之后出现,在进一步检查之后,我注意到Bottomnavigationview类中的import语句已过时(不是androidx格式,而是旧格式)。 Bottomnavigationview类文件是只读的,因此我无法对其进行编辑。

This Error appeared after migrating to androidx, after further inspection I noticed that the import statements in the Bottomnavigationview class were outdated (no androidx format, but old format). The Bottomnavigationview class file is read only, so I can't edit it.

gradle:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    buildToolsVersion '28.0.3'

    defaultConfig {
        applicationId "com.example.sanchez.worldgramproject"
        minSdkVersion 21
        targetSdkVersion 28
        multiDexEnabled true
        versionCode 0
        versionName "0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
        debug {
            debuggable true
        }
    }
}



dependencies {

    compile fileTree(dir: 'libs', include: ['*.jar'])

    implementation 'com.github.madrapps:pikolo:1.1.6'
    implementation 'com.google.android.material:material:1.1.0-alpha02'
    implementation 'com.github.bumptech.glide:glide:3.8.0'
    implementation'com.firebaseui:firebase-ui-storage:2.3.0'
    implementation 'com.google.firebase:firebase-auth:16.1.0'
    implementation 'com.google.android.gms:play-services-auth:16.0.1'
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.cardview:cardview:1.0.0'
    implementation 'androidx.recyclerview:recyclerview:1.0.0'
    implementation 'com.jakewharton:butterknife:8.8.1'
    implementation 'androidx.multidex:multidex:2.0.1'
    implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.6'
    implementation 'de.hdodenhof:circleimageview:2.2.0'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    implementation 'androidx.exifinterface:exifinterface:1.0.0'
    implementation 'com.google.firebase:firebase-storage:16.0.5'
    implementation 'com.google.android.gms:play-services-maps:16.0.0'
    implementation 'com.google.firebase:firebase-database:16.0.5'
    testImplementation 'junit:junit:4.12'

}


apply plugin: 'com.google.gms.google-services'

完整堆栈跟踪: https://pastebin.com/Yfek0YCH

是否可以更改所有导入语句以适应新的androidx格式?以及如何为所有其他类执行此操作?

Is there any way to change all import statements to fit the new androidx format? and how can I do this for all the other classes aswell?

推荐答案

添加此依赖项:

dependencies {
    // https://mvnrepository.com/artifact/com.google.android.material/material
    implementation "com.google.android.material:material:1.0.0"
}

并使用 com.google.android.material.bottomnavigation.BottomNavigationView

这篇关于BottomNavigationView迁移到androidx后会膨胀错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆