Java Code Examples for uk.co.senab.photoview.PhotoViewAttacher#OnViewTapListener

The following examples show how to use uk.co.senab.photoview.PhotoViewAttacher#OnViewTapListener . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PhotoBrowserAdapter.java    From star-zone-android with Apache License 2.0 4 votes vote down vote up
public PhotoViewAttacher.OnViewTapListener getOnViewTapListener() {
    return onViewTapListener;
}
 
Example 2
Source File: PhotoBrowserAdapter.java    From star-zone-android with Apache License 2.0 4 votes vote down vote up
public void setOnViewTapListener(PhotoViewAttacher.OnViewTapListener onViewTapListener) {
    this.onViewTapListener = onViewTapListener;
}
 
Example 3
Source File: GifView.java    From BigApp_Discuz_Android with Apache License 2.0 4 votes vote down vote up
@Override
public void setOnViewTapListener(PhotoViewAttacher.OnViewTapListener listener) {
    mAttacher.setOnViewTapListener(listener);
}
 
Example 4
Source File: GifView.java    From BigApp_Discuz_Android with Apache License 2.0 4 votes vote down vote up
@Override
public PhotoViewAttacher.OnViewTapListener getOnViewTapListener() {
    return mAttacher.getOnViewTapListener();
}
 
Example 5
Source File: ImagePagerAdapter.java    From MultiImagePicker with MIT License 4 votes vote down vote up
public ImagePagerAdapter(final Fragment fragment, final AlbumEntry albumEntry, final PhotoViewAttacher.OnViewTapListener tapListener) {
    mAlbumEntry = albumEntry;
    mFragment = fragment;
    mTapListener = tapListener;
}