Interface SimpleImageDialog.BitmapCreator

Enclosing class:
SimpleImageDialog

public static interface SimpleImageDialog.BitmapCreator
  • Method Summary

    Modifier and Type
    Method
    Description
    android.graphics.Bitmap
    create(String tag, android.os.Bundle extras)
    Create and return your image here.
  • Method Details

    • create

      @Nullable android.graphics.Bitmap create(@Nullable String tag, @NonNull android.os.Bundle extras)
      Create and return your image here. NOTE: make sure your class is public and has a public default constructor! Also, nested classes should be static.
      Parameters:
      tag - The dialog-fragments tag
      extras - The extras supplied to SimpleDialog.extra(Bundle)
      Returns:
      the image to be shown