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:模拟器正在运行但没有出现在运行应用程序“选择一个正在运行的设备"中
基础教程推荐
- Android:对话框关闭而不调用关闭 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01