Android TabLayout无法实例化

时间:2016-08-24 18:37:12

标签: java android xml

我有android.support.design.widget.TabLayout的问题。 我想将它添加到我的activity_main.xml然后我有错误:

  

渲染问题     无法实例化以下类:     - android.support.design.widget.TabLayout(Open Class,Show Exception,Clear Cache)

我有最新的API24,我的gradle文件如下:

apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion "24.0.0"

defaultConfig {
    applicationId "com.example.zawadeusz.yahooweatherapp"
    minSdkVersion 15
    targetSdkVersion 15
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
//compile 'com.android.support:appcompat-v7:24.0.0'
compile "com.android.support:appcompat-v7:24.0.0"
compile "com.android.support:design:24.0.0"
}

请帮帮我。

0 个答案:

没有答案