1
我爲我的大學開發一個android項目。我的佈局文件夾太大,我決定在我的佈局文件夾中創建子文件夾。在android studio中佈局的子文件夾
我讀this回答和問題,但這不適合我。
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "example.google.com.widgetforlockscreen"
minSdkVersion 8
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
sourceSets {
main {
res.srcDirs =
[
'src/main/res/layouts/layouts_category2',
'src/main/res/layouts',
'src/main/res'
]
}
}
}
但沒有爲我創造。
非常感謝你Msp.I明白我的問題與你的答案。上帝保佑你 –