Skip to content

Instantly share code, notes, and snippets.

@CodeBoy722
Created May 13, 2019 00:14
Show Gist options
  • Save CodeBoy722/3b877605a4a983ff791d12e422e52b92 to your computer and use it in GitHub Desktop.
Save CodeBoy722/3b877605a4a983ff791d12e422e52b92 to your computer and use it in GitHub Desktop.
Android-Simple-Image-Gallery's itemClickListener.java
package com.androidcodeman.simpleimagegallery.utils;
import java.util.ArrayList;
/**
* Author CodeBoy722
*/
public interface itemClickListener {
/**
* Called when a picture is clicked
* @param holder The ViewHolder for the clicked picture
* @param position The position in the grid of the picture that was clicked
*/
void onPicClicked(PicHolder holder, int position, ArrayList<pictureFacer> pics);
void onPicClicked(String pictureFolderPath,String folderName);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment