Android Studio cannot resolve symbol 'TabLayout'

前端 未结 6 1683
悲哀的现实
悲哀的现实 2020-12-15 05:05

Cannot resolve symbol TabLayout ? How to clear this error? Please help me. I already imported import android.support.design.widget.TabLayout;

6条回答
  •  时光说笑
    2020-12-15 05:41

    Had a similar problem, to fix this in Android Studio (AS) I went Build->Clean Project and AS sorted everything out. Make sure in your build.gradle file under dependencies that you have:

    dependencies {
        compile fileTree(dir: 'libs', include: ['*.jar'])
        compile 'com.android.support:appcompat-v7:your_api_version_number.0.0'
        compile 'com.android.support:design:+'
    }
    

提交回复
热议问题