这是由于在 Accessibility Service 中无法调用截屏接口导致的安全异常。但是可以通过启动一个已知具有截屏权限的 Activity 来实现截屏。
示例代码:
在 Accessibility Service 中启动一个 Activity:
Intent intent = new Intent(Intent.ACTION_MAIN); intent.addCategory(Intent.CATEGORY_LAUNCHER); ComponentName cn = new ComponentName("com.android.gallery", "com.android.gallery.app.GalleryActivity"); intent.setComponent(cn); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(intent);
在 Activity 中获取屏幕截图:
View view = getWindow().getDecorView().getRootView(); view.setDrawingCacheEnabled(true); Bitmap bitmap = Bitmap.createBitmap(view.getDrawingCache()); view.setDrawingCacheEnabled(false); File file = new File(Environment.getExternalStorageDirectory(), "screenshot.png"); FileOutputStream os = new FileOutputStream(file); bitmap.compress(Bitmap.CompressFormat.PNG, 100, os); os.flush(); os.close();
需要注意的是,这种方式需要用户手动允许 App 的截屏权限。可以在 Manifest 中声明:
同时还需要在 App 运行时请求这些权限。
参考链接:https://stackoverflow.com/questions/20294308/use-accessibility-service-to-take-screenshot-on-any-application