note/程序开发/安卓开发/Android Studio.md
2023-07-05 09:34:06 +08:00

67 lines
927 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 下载
下载 Android Studio 后修改路径一路Next
[官网](https://developer.android.google.cn/studio)
[AndroidDevTools](https://www.androiddevtools.cn/)
# 配置
## Android Studio 使用
安装类型
- Standard
- Custom
主题风格
## 环境变量
- ANDROID_SDK_
- SDK下载路径
- 模拟器下载路径
SDK
选择SDK后会下载到 指定环境变量路径中
# 项目
## 文件结构
### 主目录
- app
- 项目代码、资源
- build
- 编译生成的中间文件、目标文件
- gradle
- gradle wrapper 的配置文件
- 项目构建工具
### app目录
- build
- 同外层build
- libs
- 第三方包
- androidTest | test
- 编写自动化测试
- java
- java源代码
- res
- drawable
- 图片资源
- values
- 字符串
- layout
- UI布局
- AndroidManifest.xml
- 项目配置文件
- 注册组件
- proguard-rules.pro
- 代码混淆规则