问题描述
我已经通过 AVD 管理器启动了我的模拟器,一旦它运行,我点击了 run app
.我已经等了几分钟,我的正在运行的设备出现在 选择一个正在运行的设备
中,但窗口始终保持空白.
I have launched my emulator via the AVD manager and once it's running I have clicked on run app
. I have waited a couple of minutes for my running device to show up in choose a running device
but the window always stays blank.
推荐答案
可能您正在运行的项目与模拟器设置不兼容(API版本/硬件要求).如果 targetSDK 和 minimumSdk 版本较低,请检查您的 build.gradle
文件或等于您的模拟器的 sdk 版本.
Probably the project you are running is not compatible (API version/Hardware requirements) with the emulator settings. Check in your build.gradle
file if the targetSDK and minimumSdk version is lower or equal to the sdk version of your Emulator.
您还应该取消选中 工具 > Android > 启用 ADB 集成
如果您的情况不同,请重新启动 Android Studio 并再次运行模拟器.
If your case is different then restart your Android Studio and run the emulator again.
这篇关于Android studio:模拟器正在运行但没有出现在运行应用程序“选择一个正在运行的设备"中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!