Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了android – 从另一个应用程序的后台服务截图(以编程方式)大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
当我使用浏览器时,我想保存我访问过的网站的屏幕截图.因为有些页面将来会消失.所以我决定做一个后台服务,当我访问网站www.site.com时,会定期制作截图.谁可以给我任何提示,教程链接,示例,……?

附:我的手机扎根了. Android 2.1.并且不要说这是不可能的:)

更新:

屏幕截图为JPG格式或HTML,没有区别.这种方法更容易制作.

解决方法

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();

    then read img.png as bitmap and convert it jpg as follows 

Bitmap screen = BitmapFactory.decodeFile(Environment.getExternalStorageDirectory()+ File.separator +"img.png");

//my code for saving
        ByteArrayOutputStream bytes = new ByteArrayOutputStream();
        screen.compress(Bitmap.CompressFormat.JPEG,15,bytes);

//you can create a new file name "test.jpg" in sdcard folder.

File f = new File(Environment.getExternalStorageDirectory()+ File.separator + "test.jpg");
                f.createNewFile();
//write the bytes in file
        FiLeoutputStream fo = new FiLeoutputStream(f);
        fo.write(bytes.toByteArray());
// remember close de FiLeoutput

        fo.close();

大佬总结

以上是大佬教程为你收集整理的android – 从另一个应用程序的后台服务截图(以编程方式)全部内容,希望文章能够帮你解决android – 从另一个应用程序的后台服务截图(以编程方式)所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。