Android - 无法实例化以下类

时间:2016-06-15 02:39:28

标签: java android android-studio

我是一个初学者,我刚开始学习Android开发,我正在尝试打印" Hello World"使用"材质灯光主题"但我有这个问题

the following classes could not be instantiated 
 - android.support.design.widget.coordinatorLayout
 - android.support.design.widget.AppBarLayout
 - android.support.design.widget.FloatingActionButton

1 个答案:

答案 0 :(得分:4)

您是否在build.gradle中添加了这些行:

compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:support-v4:23.4.0'
compile 'com.android.support:design:23.4.0'

然后同步,重建您的项目。同时将Android Sdk Tools中的Sdk Manager更新为最新版本。

@Edit,@ Maza:

首先打开build.gradle,如果你在Android Studio的左侧看不到这个页面,请尝试按 Ctrl + 1 键:

enter image description here

然后你应该看到一个这样的窗口:

enter image description here

多数民众赞成。现在,您可以在build.gradle中添加任何依赖项!