Android Studio Emulator设备屏幕截图屏幕不可用

时间:2015-02-01 08:16:24

标签: android android-studio emulation screen-capture

在Windows中使用Android Studio。试图获取截图。

  1. 在调试模式下运行我的应用程序。
  2. 打开Android DDMS工具窗口。
  3. 点击Android DDMS工具窗口左侧的屏幕截图。
  4. 出现设备屏幕捕获窗口时,"保存"按钮被禁用并显示屏幕不可用。

3 个答案:

答案 0 :(得分:5)

在Android虚拟设备管理器(AVD)中尝试取消选中虚拟设备仿真性能设置:使用主机GPU。

答案 1 :(得分:0)

另一种方法是使用adb screenrecord

https://developer.android.com/studio/command-line/shell.html#screenrecord

$ adb shell screenrecord /sdcard/demo.mp4
(press Ctrl-C to stop)
$ adb pull /sdcard/demo.mp4
$ adb shell rm /sdcard/demo.mp4

答案 2 :(得分:0)

使用@NataliaMaciejowska答案,我还更改了模拟器设置:

enter image description here

但这没有帮助。我重新安装了视频播放器驱动程序,并以较低的API级别启动了其他模拟器。很奇怪,但是当设备显示它们时,我也没有收到屏幕截图或视频。有时以后的模拟器开始显示屏幕截图。不知道发生了什么事。同样不要忘记在这里在仿真器之间切换:

enter image description here

您可以尝试使用模拟器的按钮拍摄屏幕截图:

enter image description here