Skip to content

Commit

Permalink
fix onBack Key pressed...
Browse files Browse the repository at this point in the history
  • Loading branch information
am-Leon committed Jun 2, 2020
1 parent 0a7e487 commit fb33657
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 5 deletions.
1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 10 additions & 4 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ allprojects {

```groovy
implementation 'com.github.am-Leon:LeonImageView:v1.1.0'
implementation 'com.github.am-Leon:LeonImageView:v1.1.1'
```

Expand Down
7 changes: 7 additions & 0 deletions leon/src/main/java/am/leon/FullScreenPhotoFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,13 @@ private void viewInit() {
}


@Override
public void onCancel(@NonNull DialogInterface dialog) {
fullScreenStatus.fullScreenStatus(false);
super.onCancel(dialog);
}


@Override
public void dismiss() {
fullScreenStatus.fullScreenStatus(false);
Expand Down

0 comments on commit fb33657

Please sign in to comment.