me.iwf.photopicker.utils.PermissionsUtils Java Examples

The following examples show how to use me.iwf.photopicker.utils.PermissionsUtils. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: PhotoPickerFragment.java    From PhotoPicker with Apache License 2.0 5 votes vote down vote up
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
    if (grantResults.length > 0
            && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
        switch (requestCode) {
            case PermissionsConstant.REQUEST_CAMERA:
            case PermissionsConstant.REQUEST_EXTERNAL_WRITE:
                if (PermissionsUtils.checkWriteStoragePermission(this) &&
                        PermissionsUtils.checkCameraPermission(this)) {
                    openCamera();
                }
                break;
        }
    }
}
 
Example #2
Source File: PhotoPicker.java    From PhotoPicker with Apache License 2.0 5 votes vote down vote up
/**
 * @param fragment    Fragment to receive result
 * @param requestCode requestCode for result
 */
public void start(@NonNull Context context,
                  @NonNull android.support.v4.app.Fragment fragment, int requestCode) {
    if (PermissionsUtils.checkReadStoragePermission(fragment.getActivity())) {
        fragment.startActivityForResult(getIntent(context), requestCode);
    }
}
 
Example #3
Source File: PhotoPicker.java    From PhotoPicker with Apache License 2.0 5 votes vote down vote up
/**
 * Send the Intent with a custom request code
 *
 * @param fragment Fragment to receive result
 */
public void start(@NonNull Context context,
                  @NonNull android.support.v4.app.Fragment fragment) {
    if (PermissionsUtils.checkReadStoragePermission(fragment.getActivity())) {
        fragment.startActivityForResult(getIntent(context), REQUEST_CODE);
    }
}
 
Example #4
Source File: PhotoPickerFragment.java    From PhotoPicker with Apache License 2.0 5 votes vote down vote up
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
    if (grantResults.length > 0
            && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
        switch (requestCode) {
            case PermissionsConstant.REQUEST_CAMERA:
            case PermissionsConstant.REQUEST_EXTERNAL_WRITE:
                if (PermissionsUtils.checkWriteStoragePermission(this) &&
                        PermissionsUtils.checkCameraPermission(this)) {
                    openCamera();
                }
                break;
        }
    }
}
 
Example #5
Source File: PhotoPicker.java    From PhotoPicker with Apache License 2.0 5 votes vote down vote up
/**
 * @param fragment    Fragment to receive result
 * @param requestCode requestCode for result
 */
public void start(@NonNull Context context,
                  @NonNull android.support.v4.app.Fragment fragment, int requestCode) {
    if (PermissionsUtils.checkReadStoragePermission(fragment.getActivity())) {
        fragment.startActivityForResult(getIntent(context), requestCode);
    }
}
 
Example #6
Source File: PhotoPicker.java    From PhotoPicker with Apache License 2.0 5 votes vote down vote up
/**
 * Send the Intent with a custom request code
 *
 * @param fragment Fragment to receive result
 */
public void start(@NonNull Context context,
                  @NonNull android.support.v4.app.Fragment fragment) {
    if (PermissionsUtils.checkReadStoragePermission(fragment.getActivity())) {
        fragment.startActivityForResult(getIntent(context), REQUEST_CODE);
    }
}
 
Example #7
Source File: PhotoPickerFragment.java    From PhotoPicker with Apache License 2.0 5 votes vote down vote up
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
  if (grantResults.length > 0
          && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
    switch (requestCode) {
      case PermissionsConstant.REQUEST_CAMERA:
      case PermissionsConstant.REQUEST_EXTERNAL_WRITE:
        if (PermissionsUtils.checkWriteStoragePermission(this) &&
                PermissionsUtils.checkCameraPermission(this)) {
          openCamera();
        }
        break;
    }
  }
}
 
Example #8
Source File: PhotoPicker.java    From PhotoPicker with Apache License 2.0 5 votes vote down vote up
/**
 *
 * @param fragment    Fragment to receive result
 * @param requestCode requestCode for result
 */
public void start(@NonNull Context context,
                  @NonNull android.support.v4.app.Fragment fragment, int requestCode) {
  if (PermissionsUtils.checkReadStoragePermission(fragment.getActivity())) {
    fragment.startActivityForResult(getIntent(context), requestCode);
  }
}
 
Example #9
Source File: PhotoPicker.java    From PhotoPicker with Apache License 2.0 5 votes vote down vote up
/**
 * Send the Intent with a custom request code
 *
 * @param fragment    Fragment to receive result
 */
public void start(@NonNull Context context,
                  @NonNull android.support.v4.app.Fragment fragment) {
  if (PermissionsUtils.checkReadStoragePermission(fragment.getActivity())) {
    fragment.startActivityForResult(getIntent(context), REQUEST_CODE);
  }
}
 
Example #10
Source File: PhotoPickerFragment.java    From PhotoPicker with Apache License 2.0 4 votes vote down vote up
public void activityCamera() {
    if (!PermissionsUtils.checkCameraPermission(PhotoPickerFragment.this)) return;
    if (!PermissionsUtils.checkWriteStoragePermission(PhotoPickerFragment.this)) return;
    openCamera();
}
 
Example #11
Source File: PhotoPickerFragment.java    From PhotoPicker with Apache License 2.0 4 votes vote down vote up
public void activityCamera() {
    if (!PermissionsUtils.checkCameraPermission(PhotoPickerFragment.this)) return;
    if (!PermissionsUtils.checkWriteStoragePermission(PhotoPickerFragment.this)) return;
    openCamera();
}
 
Example #12
Source File: PhotoPicker.java    From PhotoPicker with Apache License 2.0 2 votes vote down vote up
/**
 * Send the Intent from an Activity with a custom request code
 *
 * @param activity    Activity to receive result
 * @param requestCode requestCode for result
 */
public void start(@NonNull Activity activity, int requestCode) {
    if (PermissionsUtils.checkReadStoragePermission(activity)) {
        activity.startActivityForResult(getIntent(activity), requestCode);
    }
}
 
Example #13
Source File: PhotoPicker.java    From PhotoPicker with Apache License 2.0 2 votes vote down vote up
/**
 * Send the Intent from an Activity with a custom request code
 *
 * @param activity    Activity to receive result
 * @param requestCode requestCode for result
 */
public void start(@NonNull Activity activity, int requestCode) {
    if (PermissionsUtils.checkReadStoragePermission(activity)) {
        activity.startActivityForResult(getIntent(activity), requestCode);
    }
}
 
Example #14
Source File: PhotoPicker.java    From PhotoPicker with Apache License 2.0 2 votes vote down vote up
/**
 * Send the Intent from an Activity with a custom request code
 *
 * @param activity    Activity to receive result
 * @param requestCode requestCode for result
 */
public void start(@NonNull Activity activity, int requestCode) {
  if (PermissionsUtils.checkReadStoragePermission(activity)) {
    activity.startActivityForResult(getIntent(activity), requestCode);
  }
}