日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

android studio新建layout,【Android Studio安装部署系列】十六、Android studio在layout目录下新建子目录...

發布時間:2023/12/19 52 豆豆
生活随笔 收集整理的這篇文章主要介紹了 android studio新建layout,【Android Studio安装部署系列】十六、Android studio在layout目录下新建子目录... 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

版權聲明:本文為HaiyuKing原創文章,轉載請注明出處!

概述

一般用于分類顯示不同模塊的layout布局文件。

在res/layout文件夾下創建子目錄

res/layout鼠標右鍵——New——Directory

在創建好的子目錄下,創建layout文件夾

res/layout/home鼠標右鍵——New——Directory

將布局文件放入相應的layout文件夾

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

apply plugin: 'com.android.application'

android {

compileSdkVersion 27

defaultConfig {

applicationId "com.why.project.helloworld"

minSdkVersion 16

targetSdkVersion 27

versionCode 1

versionName "1.0"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

}

buildTypes {

release {

minifyEnabled false

proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'

}

}

//在layout文件夾下建立子文件夾

sourceSets {

main{

res.srcDirs = [

'src/main/res/layout/home',

'src/main/res/layout',

'src/main/res'

]

}

}

}

dependencies {

implementation fileTree(include: ['*.jar'], dir: 'libs')

implementation 'com.android.support:appcompat-v7:27.1.1'

implementation 'com.android.support.constraint:constraint-layout:1.1.0'

testImplementation 'junit:junit:4.12'

androidTestImplementation 'com.android.support.test:runner:1.0.2'

androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'

implementation project(':baselibrary')

}

注意:每新建一個子目錄,就需要添加一行類似'src/main/res/layout/home',的代碼。

至此,添加完成。

參考資料

總結

以上是生活随笔為你收集整理的android studio新建layout,【Android Studio安装部署系列】十六、Android studio在layout目录下新建子目录...的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。