2016-07-13 143 views
0

通知,我搜索了很多,所以這不是一個重複的問題無法找到Android的支持庫

搜索這些沒有答案

Can't find Android Support Package

Cant' find Android Support package

How to add "Android Design Support Library" to Eclipse with ADT-plugin?

https://developer.android.com/topic/libraries/support-library/setup.html#using-apis

我只是想能夠使用 TabLayout,當我使用它,它說 無法解決「TabLayout」符號。

,當我嘗試將其導入

進口android.support.design.widget.TabLayout; 說也解決不了「TabLayout」

還我搜索這個錯誤,它會導致安裝Android支持庫,我無法找到

這裏是該 Android Studio cannot resolve symbol 'TabLayout'

搜索所以如何安裝該庫?

Image of SDK

這裏是gradle.build

apply plugin: 'com.android.application' 

android { 
compileSdkVersion 23 
buildToolsVersion "24.0.0" 

defaultConfig { 
    applicationId "com.example.android.engtomiwak" 
    minSdkVersion 15 
    targetSdkVersion 23 
    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:23.4.0' 
} 

在此先感謝....

+0

你把它加入到gradle中嗎? – Joshua

+0

你應該在這裏添加你的build.gradle文件。 –

+0

如果你的意思是添加編譯「com.android.support:support-v4:23.0.+」這依賴項下,是的,我做了,仍然TabLayout無法解決 –

回答

2

確保您已經添加了依賴性:

compile 'com.android.support:design:23.1.1' 

然後導入:

import android.support.design.widget.TabLayout; 
+0

非常感謝,我之前嘗試過,但問題是,我沒有在依賴關係中添加編譯後同步gradle,非常感謝 –

相關問題