Android studio: emulator is running but not showing up in Run App quot;choose a running devicequot;(Android studio:模拟器正在运行但没有出现在运行应用程序“选择一个正在运行的设备中)
问题描述
我已经通过 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:模拟器正在运行但没有出现在运行应用程序“选择一个正在运行的设备"中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Android studio:模拟器正在运行但没有出现在运行应用程序“选择一个正在运行的设备"中
基础教程推荐
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
