我从画廊加载图像,并使用Android图像裁剪器裁剪它
我的方法代码
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == Activity.RESULT_OK) {
if (requestCode == CHOOSE_IMAGE) {
CropImage.activity (data.getData ( ))
.setGuidelines (CropImageView.Guidelines.ON)
.start (this);
} else if (requestCode == CropImage.CROP_IMAGE_ACTIVITY_REQUEST_CODE) {
Uri imageUri = getPickImageResultUri (data);
// For API >= 23 we need to check specifically that we have permissions to read external storage,
// but we don't know if we need to for the URI so the simplest is to try open the stream and see if we get error.
boolean requirePermissions = false;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M &&
checkSelfPermission (Manifest.permission.READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED &&
isUriRequiresPermissions (imageUri)) {
// request permissions and handle the result in onRequestPermissionsResult()
requirePermissions = true;
mCropImageUri = imageUri;
requestPermissions (new String[]{Manifest.permission.READ_EXTERNAL_STORAGE}, 0);
}
if (!requirePermissions) {
}
mCropImageUri = imageUri;
try {
Bitmap bitmap = MediaStore.Images.Media.getBitmap(getApplicationContext ().getContentResolver() , mCropImageUri);
mCropImageView.setImageBitmap (bitmap);
} catch (IOException e) {
e.printStackTrace ( );
}
// mImageLoader.displayImage (String.valueOf (mCropImageUri),mUiCircularImage,options);
}
}
}
一切都很好。
resultCode
正常。
requestCode
可以
数据
不为空
ImageUri
file:///storage/emulated/0/Android/data/com.hey.heypickup/cache/pickImageResult.jpeg
但是当我想用下面的代码将上面的URI转换成位图时
Bitmap bitmap = MediaStore.Images.Media.getBitmap(getApplicationContext ().getContentResolver() , mCropImageUri)
破例
FATAL EXCEPTION: main
Process: com.hey.heypickup, PID: 21994
java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=203, result=-1, data=Intent { (has extras) }} to activity {com.hey.heypickup/com.hey.heypickup.Activities.MainActivity}: java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String android.net.Uri.getScheme()' on a null object reference
at android.app.ActivityThread.deliverResults(ActivityThread.java:3790)
at android.app.ActivityThread.handleSendResult(ActivityThread.java:3833)
at android.app.ActivityThread.access$1700(ActivityThread.java:152)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1390)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5538)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:960)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:755)
Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String android.net.Uri.getScheme()' on a null object reference
at android.content.ContentResolver.openInputStream(ContentResolver.java:641)
at android.provider.MediaStore$Images$Media.getBitmap(MediaStore.java:849)
at com.hey.heypickup.Activities.MainActivity.onActivityResult(MainActivity.java:128)
at android.app.Activity.dispatchActivityResult(Activity.java:6238)
at android.app.ActivityThread.deliverResults(ActivityThread.java:3786)
at android.app.ActivityThread.handleSendResult(ActivityThread.java:3833)
at android.app.ActivityThread.access$1700(ActivityThread.java:152)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1390)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5538)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:960)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:755)
所以就这样了...
mCropImageUri
为null
。
特别是,如果这个测试是false
,你的问题中没有代码为它赋值:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M &&
checkSelfPermission (Manifest.permission.READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED &&
isUriRequiresPermissions (imageUri))
我的应用程序有问题,我想解决它,但我无法访问解决方案,请帮助我,,,
我正在尝试实现一个外部色轮,它应该出现在的片段一直在崩溃我的应用程序。我想我明白为什么会发生这种情况,但是在尝试修复它大约6个小时后,我就要放弃了。我知道之前有人问过这个问题,但是我无法为我的特定问题导出一个修复程序。下面是我的代码: 这是Logcat错误: 如果有人能帮我解决这个问题,那就太好了。提前谢谢^^ 编辑:这是我的XML,按要求:
我的app里有两个账号,家人和老人。我想把老人的位置检索到家庭账户,然后在地图上显示出来。现在,我要得到纬度和经度。我已把帐目对成一对。 下面是数据库结构。 更新: 更新的代码: 在getCurrentLocation函数中获取纬度时出错
我将使用库,并尝试在应用程序启动时使用以下方法获取令牌。 应用程序在发布时崩溃 AndroidManifest Build.Gradle: 此外,我尝试在SharedPreferences中缓存令牌,但似乎从未调用onNewToken()。 会有什么问题?
我试图从我的数据库中获取的数据设置抽屉菜单活动的文本,但当我尝试这样做时,它会抛出以下错误 尝试调用虚拟方法“void android”。小装置。文本视图。空对象引用上的setText(java.lang.CharSequence)' 我是在代码中遗漏了什么还是做错了什么?
我将要制作android应用程序,但是由于致命的异常:main java.lang.NullPointerException应用程序没有保存数据,请在这里帮助我 这是我的EditNoteActivity 这是我的Logcat错误