Skip to content

Commit

Permalink
修复图片编辑后不生效的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
aaatttcccc committed Dec 8, 2021
1 parent 317a43f commit 04acafb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ public void onActivityResult(int requestCode, int resultCode, Intent data) {
}
break;
case REQUEST_CODE_PREVIEW_VIDEO:
// 视频界面
ArrayList<String> arrayList = new ArrayList<>();
arrayList.add(data.getStringExtra("path"));
ArrayList<Uri> arrayListUri = new ArrayList<>();
Expand All @@ -153,6 +154,7 @@ public void onActivityResult(int requestCode, int resultCode, Intent data) {
mActivity.finish();
break;
case REQ_IMAGE_EDIT:
// 编辑图片界面
mCameraLayout.refreshEditPhoto();
break;
default:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public Boolean onBackPressed() {

@Override
public boolean onActivityResult(int resultCode) {
return true;
return false;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public Boolean onBackPressed() {

@Override
public boolean onActivityResult(int resultCode) {
return true;
return false;
}

@Override
Expand Down

0 comments on commit 04acafb

Please sign in to comment.