我是Android开发的新手。这是我的系统:
Windows 10 Enterprise 64位
Intel Core i7 4790 CPU @ 3.60 GHZ
8 GB ram
我已经安装了Android Studio 1.5.1
当我尝试运行Hello World应用程序时,模拟器可以工作,但会继续等待Android启动画面。我等了很多,没有意义。只是一直在等待。当我尝试从CMD运行时,结果是一样的。这是CMD中的输出。
mutex m
condition_var odd
condition_var even
integer i
function handle odd numbers:
lock(m)
while true:
if i is odd:
print i
increment i
signal even
wait odd
function handle even numbers:
lock(m)
while true:
if i is even:
print i
increment i
signal odd
wait even
main:
i = 0
start thread to handle odd numbers
start thread to handle even numbers
这些是Android工作室的截图。
我试图关闭Hyper-V: bcdedit / set hypervisorlaunchtype off 然后从here
重新启动....如果能够正确运行模拟器,我还能做些什么?我还安装了Visual Studio 2015。它在通用Windows应用程序中完美运行。谢谢你的任何想法。
答案 0 :(得分:2)
我建议您将Android手机连接为模拟器
对于使用Android V3.2或更早版本运行的设备:
对于这些设备,您可以转到设置 - >访问开发人员选项。应用程序 - >发展。你应该启用USB调试。 湾对于使用Android V4.0中的较新版本运行的设备:
对于这些设备,默认情况下不显示“开发人员”选项。您可以转到设置 - >来访问开发者选项。关于手机 - >内部编号。现在点击Build Number 7次,以便获得Access to Developer选项。现在您可以看到Toast显示您现在是开发人员。现在返回“设置”。在那里,您现在可以看到关于Tablet的开发者选项进入开发人员选项,然后必须启用USB调试。
现在,最后一步是为Windows安装驱动程序以检测设备。对于mac,不需要它。
答案 1 :(得分:0)
您可以使用 Genymotion emulator 进行Android开发,它更加快速可靠,当然也非常容易设置和配置。