- 打开Android Studio并选择“File”选项。
- 在“Settings”中选择“Appearance & Behavior”。
- 选择“System Settings”下的“Android SDK”。
- 在“SDK Platforms”选项卡下,勾选所需的API级别和系统图像(如Android 10.0)。
- 在“SDK Tools”选项卡下,勾选“Android Emulator”。
- 安装并创建所需的模拟器(AVD)。
- 在菜单栏中选择“Run” -> “Edit Configurations”。
- 选中“app”下的“Android Application”配置。
- 在“General”选项卡下,找到“Launch Options”部分。
- 在“Emulator”下拉菜单中选择要用作默认AVD的模拟器。
- 单击“OK”保存更改并关闭对话框。
- 现在,XML设计查看器将默认使用所选的模拟器预览布局。
以下是设置默认AVD的示例代码:
defaultConfig {
// ...其他配置
targetSdkVersion 30 // 目标API级别
// ...其他配置
}
configurations.all {
resolutionStrategy {
force 'com.android.support:support-annotations:28.0.0' //支持引用版本号
}
}
android {
// ...其他配置
buildTypes {
debug {
// ...其他配置
applicationIdSuffix '.debug' // Debug版本的应用ID后缀
versionNameSuffix '-DEBUG' // Debug版本的版本名称后缀
// ...其他配置
}
// ...其他构建类型
}
// ...其他配置
}