CanHub / Android-Image-Cropper

Image Cropping Library for Android, optimised for Camera / Gallery.
https://canhub.github.io/
Apache License 2.0
1.17k stars 240 forks source link

Tool bar and its buttons(back, crop etc) is not shown. just white space #621

Closed Larry7939 closed 3 months ago

Larry7939 commented 3 months ago
cropImage.launch( CropImageContractOptions( uri = null,
  cropImageOptions = CropImageOptions(
      aspectRatioX = 1,
      aspectRatioY = 1,
  ) ) )
vanniktech commented 3 months ago

Just roll your own activity probably a theming issue on your side.

Nek-12 commented 2 months ago

Getting the same issue here, and the response is truly idiotic. I'm using theme.materialcomponents.dark

Arise commented 5 days ago

Trying to save the world, in your app AndroidManifest.xml, just add:

        <activity android:name="com.canhub.cropper.CropImageActivity"
            android:theme="@style/Base.Theme.AppCompat"/>

Crop tools should then display fine.