Class ImageDeletingThread

  • All Implemented Interfaces:
    java.lang.Runnable

    public class ImageDeletingThread
    extends java.lang.Object
    implements java.lang.Runnable
    This background thread is defined for deleting images from MediaStore
    Since:
    2022-03-01
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String MSG_DELETE  
    • Constructor Summary

      Constructors 
      Constructor Description
      ImageDeletingThread​(int deletePosition, java.util.ArrayList<CameraImage> imageList, ImageGalleryActivity imageGalleryActivity, android.os.Handler objHandler)
      This constructor is used to initialise the instance of background thread
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void run()
      Overrides run function, get called when the thread is started.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ImageDeletingThread

        public ImageDeletingThread​(int deletePosition,
                                   java.util.ArrayList<CameraImage> imageList,
                                   ImageGalleryActivity imageGalleryActivity,
                                   android.os.Handler objHandler)
        This constructor is used to initialise the instance of background thread
        Parameters:
        deletePosition - int
        imageList - ArrayList
        imageGalleryActivity - ImageGalleryActivity
        objHandler - Handler
    • Method Detail