error can not resolve symbol TabLayout and #39;design(错误无法解析符号 TabLayout 和“设计)
问题描述
请帮助:导入 android.support.design.widget.TabLayout
时出错它说无法解析符号'design'
Please help: I got error when import android.support.design.widget.TabLayout
It say "can not resolve symbol 'design'
我的 build.gradle:
My build.gradle:
compileSdkVersion 26
buildToolsVersion "26.0.0"
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2',
{
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:support-v4:26'
testCompile 'junit:junit:4.12'
}
推荐答案
您忘记添加设计支持库.只需在您的 gradle app
文件中添加此依赖项:
You forgot to add design support library. Just add this dependencies in your gradle app
file:
implementation 'com.android.support:design:26.0.+'
设计支持库一个>
Design 包提供 API 以支持向您的应用添加材料设计组件和模式.
The Design package provides APIs to support adding material design components and patterns to your apps.
Design Support 库增加了对各种材料设计组件和模式的支持,供应用开发者构建,例如 navigation drawers
、floating action buttons (FAB)
、snackbars
和 TabLayout
.
The Design Support library adds support for various material design components and patterns for app developers to build upon, such as navigation drawers
, floating action buttons (FAB)
, snackbars
, and TabLayout
.
或AndroidX依赖:
Or AndroidX dependency:
implementation "com.google.android.material:material:1.0.0"
这篇关于错误无法解析符号 TabLayout 和“设计"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:错误无法解析符号 TabLayout 和“设计"
基础教程推荐
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01