在Windows中使用Android Studio。试图获取截图。
出现设备屏幕捕获窗口时,"保存"按钮被禁用并显示屏幕不可用。
答案 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)