我需要从后台服务中截取屏幕截图,以了解非root用户设备的用户体验。
我想在Android截图库(ASL)http://code.google.com/p/android-screenshot-library/中截取屏幕截图,但我不知道如何安装ASL并从没有ADB的设备启动它。
我尝试使用此代码来安装和运行ASL:
//安装ASL String filename = Environment.getExternalStorageDirectory()。toString()+ File.separator +“asl-native”; 进程进程=运行时.getRuntime()。exec(“/ system / bin / mv”+ f +“/ data / local / asl-native”); process = Runtime .getRuntime()。exec(“/ system / bin / chmod 0777 / data / local / asl-native”);
//运行ASL Process process = Runtime .getRuntime()。exec(“/ data / local / asl-native /data/local/asl-native.log”);
但它不起作用。
提前致谢