“Implementierung von Bild Cropper” Code-Antworten

Implementierung von Bild Cropper

dependencies {
    api 'com.theartofdev.edmodo:android-image-cropper:2.8.+'
}
Friendly Falcon

Implementierung von Bild Cropper

// start picker to get image for cropping and then use the image in cropping activity
CropImage.activity()
  .setGuidelines(CropImageView.Guidelines.ON)
  .start(this);

// start cropping activity for pre-acquired image saved on the device
CropImage.activity(imageUri)
 .start(this);

// for fragment (DO NOT use `getActivity()`)
CropImage.activity()
  .start(getContext(), this);
Friendly Falcon

Ähnliche Antworten wie “Implementierung von Bild Cropper”

Fragen ähnlich wie “Implementierung von Bild Cropper”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen