App工程分为两个层次 ——项目、模块
-
?模块依附于项目,每个项目至少有一个模块,也可以有多个模块 -
一般而言的“编译运行APP”,指的是运行某个模块,而非运行某个项目。因为模块才是对应实际的APP
APP项目的目录说明
- App
- mainfests(只有XML——AndroidManifest.xml,它是app运行配置文件,系统需要根据里面的内容运行app代码,显示界面。)?
- java(子目录三个包,一个源代码,两个测试代码)
- res(当前模块的资源文件)
- ???????drawable(存放图形描述文件与图片文件)
- layout(存放app页面布局文件)
- mipmap(存放app启动文件)
- values(存放常量定义文件)
- Gradle Scripts(主要是工程的配置文件)——gradle是项目自动化创建工具(依赖、打包、部署、发布、各种渠道的差异化管理工作)
- build.gradle(用于描述app工程的编译规则)
- proguard-rules.pro(用于描述java代码 的混淆规则)
- gradle.properties(用于配置编译工具的命令行参数,一般无需改动)
- settings.gradle(配置了需要编译的模块)
- local.properties(项目的本地配置文件)
build.gradle实例:
plugins {
id 'com.android.application'
}
android {
compileSdk 32 //指定编译的sdk版本号,32-->Android 13.0
defaultConfig {
applicationId "com.example.myapplication"//指定该模块的应用编号,也就是app的包名,要和清单一样
minSdk 28 //指定app是适合运行的最小sdk版本号
targetSdk 32 //指定当前设备的sdk版本号
versionCode 1 //app的应用版本号
versionName "1.0" //指定app的应用版本名称
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" //测试
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
//各种依赖
implementation 'androidx.appcompat:appcompat:1.3.0' //兼容的适配
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}
AndroidManifest.xml实例:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.example.myapplication"> //包名
<application
android:allowBackup="true" //是否允许应用备份。允许用户备份系统应用和第三方应用的apk安装包和应用数据,以便在刷机或者数据丢失后回复应用。用户可以通过adb backup和adb restore来进行对应用数据的备份和回复。true 为真
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher" //app在手机桌面的图标
android:label="@string/app_name" //app图标下的名称
android:roundIcon="@mipmap/ic_launcher_round"//app的圆角图标
android:supportsRtl="true" //是否支持阿拉伯语、波斯语这种从左往右的顺序
android:theme="@style/Theme.MyApplication" //app的显示风格
tools:targetApi="31">
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Activity(屏幕组件、页面):
activity是app组件,提供屏幕,用户用来交互
利用XML(类似HTML)标记描绘应用界面,使用java(类似JS)代码书写程序逻辑?
创建新的app界面:
- 在layout目录下创建XML文件
- 创建与XML文件对应的java代码
- 在AndroidManifest.xml中注册页面配置
|