請通知,我搜索了很多,所以這不是一個重複的問題無法找到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'
搜索所以如何安裝該庫?
這裏是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'
}
在此先感謝....
你把它加入到gradle中嗎? – Joshua
你應該在這裏添加你的build.gradle文件。 –
如果你的意思是添加編譯「com.android.support:support-v4:23.0.+」這依賴項下,是的,我做了,仍然TabLayout無法解決 –