Signal-Android/photoview/src/main/java/com/github/chrisbanes/photoview/OnOutsidePhotoTapListener.java

15 wiersze
299 B
Java
Czysty Zwykły widok Historia

2022-10-21 15:04:40 +00:00
package com.github.chrisbanes.photoview;
import android.widget.ImageView;
/**
* Callback when the user tapped outside of the photo
*/
public interface OnOutsidePhotoTapListener {
/**
* The outside of the photo has been tapped
*/
void onOutsidePhotoTap(ImageView imageView);
}