ubuntu上在androidstudio中启动emulator闪退的解决方法
程序员文章站
2022-10-29 16:13:16
阅读目录(content)
平台
现象
解决
一、查看模拟器的信息
二、命令行运行模拟器
平台
ubuntu14.04 64
现象
在androdstud...
阅读目录(content)
平台
现象
解决
一、查看模拟器的信息
二、命令行运行模拟器
平台
ubuntu14.04 64
现象
在androdstudio中点击模拟器的启动按钮后,模拟器界面弹出后,又立刻闪退。
解决
一、查看模拟器的信息
从上面可以看到模拟器的存放路径以及名称:
路径:/home/pengdonglin/.android/avd/4_wvga_nexus_s_api_24.avd
名称:4_wvga_nexus_s_api_24
架构:x86_64
二、命令行运行模拟器
在androidsdk的路径下面运行下面的命令:
./emulator/qemu/linux-x86_64/qemu-system-x86_64 -avd 4_wvga_nexus_s_api_24
此时出现了错误:
emulator: warning: encryption is off warning: the mesa software renderer is deprecated. use swiftshader (-gpu swiftshader) for software rendering. failed to create drawable getgles2extensionstring: could not create gles 2.x pbuffer! failed to obtain gles 2.x extensions string! could not initialize emulated framebuffer warning: host doesn't support requested feature: cpuid.80000001h:ecx.sse4a [bit 6] warning: host doesn't support requested feature: cpuid.80000001h:ecx.sse4a [bit 6] warning: host doesn't support requested feature: cpuid.80000001h:ecx.sse4a [bit 6] warning: host doesn't support requested feature: cpuid.80000001h:ecx.sse4a [bit 6] emulator: emulator window was out of view and was recentered emulator: error: could not initialize opengles emulation, use '-gpu off' to disable it.
从提示中有两种解决办法:
1、设置 -gpu swiftshader
2、设置 -gpu off
在运行模拟器的时候,加入上面任意一个,都可以解决问题,但是最终我们并不是从命令行运行模拟器,所以我们得把这上面的配置写到模拟器的启动配置文件中。
从模拟器的配置信息看:
这里已经设置了软件gles 2.0,所以这里就需要在配置文件中修改模拟器的配置了,配置文件的路径:
~/.android/avd/4_wvga_nexus_s_api_24.avd/config.ini
下面是这个文件中关于gpu的配置:
hw.gps=yes hw.gpu.enabled=yes hw.gpu.mode=mesa
解决方法1:
hw.gpu.enabled=no hw.gpu.mode=mesa
解决方法2:
hw.gpu.enabled=yes hw.gpu.mode=swiftshader
使用上面的任意一个,模拟器都可以运行:
以上所述是小编给大家介绍的ubuntu上在androidstudio中启动emulator闪退的解决方法,希望对大家有所帮助
上一篇: Android View 绘制机制的详解