-
Notifications
You must be signed in to change notification settings - Fork 209
增加PermissionGot注解 #12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
在使用MPermission的过程中发现在权限已获得和弹出授权对话框并同意这两种情形所面临的代码执行环境是不同的,系统弹出的授权对话框会使得原activity回调到OnSaveInstanceState,而已授权的话则不会有弹框出现。在弹出授权对话框后,若执行的注解方法中包含Fragment#commit(DialogFragment#show)则会因IllegalStateException而Crash掉;而在已获得授权时则执行相应方法不会有问题,这说明应提供一种方式来应对两种不同的执行环境。
在修改中参照原有代码增加了PermissionGot注解,当提供PermissionGot注解方法时,已获得授权将执行此方法,当未提供PermissionGot注解方法时,已获得授权将执行PermissionGrant注解方法,即用户可根据自己所面临的实际情况来选择是否需要将两者区别对待,若需要则添加上PermissionGot注解方法即可