当前位置:   article > 正文

Android Studio layout添加子文件夹 总结_android layout中新建文件夹

android layout中新建文件夹

概述

一般用于分类显示不同模块的layout布局文件。

在res/layout文件夹下创建子目录

res/layout鼠标右键——New——Directory

在创建好的子目录下,创建layout文件夹

res/layout/home鼠标右键——New——Directory

将布局文件放入相应的layout文件夹

 

打开app/build.gradle,在android{}中加入以下代码

  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 27
  4. defaultConfig {
  5. applicationId "com.why.project.helloworld"
  6. minSdkVersion 16
  7. targetSdkVersion 27
  8. versionCode 1
  9. versionName "1.0"
  10. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. //在layout文件夹下建立子文件夹
  19. sourceSets {
  20. main{
  21. res.srcDirs = [
  22. 'src/main/res/layout/home',
  23. 'src/main/res/layout',
  24. 'src/main/res'
  25. ]
  26. }
  27. }
  28. }
  29. dependencies {
  30. implementation fileTree(include: ['*.jar'], dir: 'libs')
  31. implementation 'com.android.support:appcompat-v7:27.1.1'
  32. implementation 'com.android.support.constraint:constraint-layout:1.1.0'
  33. testImplementation 'junit:junit:4.12'
  34. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  35. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  36. implementation project(':baselibrary')
  37. }

 注意:每新建一个子目录,就需要添加一行类似'src/main/res/layout/home',的代码。

 

至此,添加完成。

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/314011
推荐阅读
相关标签
  

闽ICP备14008679号