当前位置: 首页 > 知识库问答 >
问题:

以下类无法实例化:-android.support.design.widget.BottomNavigationView

华星驰
2023-03-14

我正在处理Android版本28,Firebase 16。

实现bottomNavView会返回以下错误:

The following classes could not be instantiated: 
- android.support.design.widget.BottomNavigationView

我尝试将AppTheme样式更改为Base。主题,但不能解决它。

我的gradle应用程序:

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.firebase:firebase-core:16.0.6'
implementation 'com.android.support:animated-vector-drawable:28.0.0'
implementation 'com.android.support:support-media-compat:28.0.0'
implementation 'com.android.support:cardview-v7:28.0.0'

//add library
implementation 'com.google.firebase:firebase-core:16.0.6'
implementation 'com.google.firebase:firebase-database:16.0.6'
implementation 'com.rengwuxian.materialedittext:library:2.1.4'



}

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

我的风格。xml文件

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

我的gradle项目:

classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.google.gms:google-services:4.2.0'

共有1个答案

闻人鸿飞
2023-03-14

尝试转到“文件”-

 类似资料:
  • 发生什么事了?需要帮助~我试了很多方法,但还是解决不了 呈现问题以下类无法实例化:- Android.support.design.widget.floatingActionButton(打开类,显示异常,清除缓存)提示:在自定义视图中使用view.isineditMode()跳过代码或在IDE中显示示例数据。如果这是一个意外错误,您也可以尝试构建项目,然后手动刷新布局。 异常详细描述了java.

  • 问题: 无法实例化以下类:Android.Support.V7.Widget.AppCompatimageView 这是跟踪堆栈。

  • 我正在用AndroidLollipop(5.0)中使用的新材料设计创建一个应用程序。 我正在使用以下指南: null 创建工具栏后,收到以下错误:“以下类无法实例化:- Android.Support.v7.Widget.toolbar” 该应用程序在手机或模拟器中运行良好,但Android Studio的布局设计师不能正确显示布局。 这里有一些图像: my_awesome_toolbar.xml

  • 以下是我的构建依赖项。gradle(应用程序) 这里是build.gradle(Project)的一部分 当我访问任何文件时,它向我显示了一个错误**以下类无法实例化: 我已将Android Studio更新到最新的仍然显示错误。 我无法解决这个问题谢谢

  • 问题内容: 我一直在尝试在我的应用中使用AdMob横幅广告,但始终出现错误; 无法实例化以下类:-com.google.android.gms.ads.AdView 我已经尝试过所有可以在这里和通过谷歌搜索找到的解决方案。我有; 在我的gradle中。我已经输入了这里指定的所有部分; https://developers.google.com/mobile-ads- sdk/docs/ 但是仍然没

  • 问题内容: 当我尝试运行此代码时: 我收到此错误: 我不明白为什么我无法实例化课程…在我看来似乎是对的… 问题答案: 是一个接口,因此您无法直接实例化它。您可以实例化一个具体的子类,例如: