0

我正在从我的应用程序中截取android设备的屏幕截图,在我的华为设备中没有截屏实用程序,但现在我已经通过从其他设备获取它来添加它,现在我可以使用截屏截屏但只有通知栏可见,休息图像为空白。

4

1 回答 1

0
adb shell /system/bin/screencap -p /sdcard/img.png this is a shell command take screenshot simple and fast

Try this

Process sh = Runtime.getRuntime().exec("su", null,null);
OutputStream  os = sh.getOutputStream();
os.write(("/system/bin/screencap -p " + "/sdcard/img.png").getBytes("ASCII"));
            os.flush();
            os.close();
            sh.waitFor();
于 2013-03-29T07:51:14.507 回答