我知道Stack Overflow上有这样一个问题 但答案只是在我的代码中不起作用。
我也尝试使用decodeStream()
来获取
一个位图,但我得到了相同的结果。
唯一有效的方法是decodeResource()
。
我无法使用decodeResourse
因为我需要
解码我将得到的不断变化的图像
在运行时,截图
以下所有代码均位于服务的onstartCommand()
方法
Notification.Builder notificationBuilder = new Notification.Builder(this)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("My notification")
.setContentText("Hello World!");
NotificationManager mNotificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = notificationBuilder.build();
mNotificationManager.notify(1, notification);
startForeground(1,notification);
String path = "/data/data/com.mycompany.myapp/files";
File f = null;
BitmapFactory.Options options = null;
Bitmap bitmap = null;
try{
//Request Su permission
Process sh = Runtime.getRuntime().exec("su", null,null);
OutputStream os = sh.getOutputStream();
//Open an output stream to a private file to my app
FileOutputStream fos = openFileOutput("img4.png", Context.MODE_PRIVATE);
fos.write(("/system/bin/screencap -p " +
"/data/data/com.mycompany.myapp/files/img4.png").getBytes("UTF-8"));
fos.close();
f=new File(path,"img4.png");
options = new BitmapFactory.Options();
options.inSampleSize = 4;
//decodeFile always returns null yet
//I am sure that the file exsists
bitmap = BitmapFactory.decodeFile(
new File(getFilesDir(),"img4.png").getAbsolutePath(),
options);
os.flush();
os.close();
sh.waitFor();
}catch(Exception e){
e.printStackTrace();
}
//I create and show a toast
Toast.makeText(getApplicationContext(),"Exs: " + f.exists()
//I always get a nullPointerException here
" "+ bitmap.getPixel(0,0),Toast.LENGTH_SHORT).show();
答案 0 :(得分:0)
您确定应用程序清单(main / AndroidManifest.xml)包含android.permission.READ_EXTERNAL_STORAGE并且您已在手机上授予此权限吗?
在我的旧(根)手机上,未经此许可,示例应用程序正常运行。在我较新的,没有根的手机上,我必须包含此权限才能使应用程序正常工作。