Search code examples
androidandroid-fragmentsandroid-studioimporterrorandroid-tablayout

Android Studio cannot resolve symbol 'TabLayout'


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


Solution

  • 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:+'
    }