ScrollGalleryView
ScrollGalleryView copied to clipboard
:bridge_at_night: Android image gallery with bottom scroll view
Please upload the library to Maven Central. Jcenter is shutting down. Roughly there are two things that will need to be done: 1. Change publishing pipeline to upload new library...
The original setCurrentItem method only adjusted the main image and the thumbnails always started with the first one. I added a scroll(thumbnailsContainer.getChildAt(i)) and attached it to the lifecycle of the...
crash
Unable to start activity java.lang.IllegalArgumentException: width and height must be > 0 ``` val galleryView = ScrollGalleryView.from(findViewById(R.id.galleryView)) .settings(GallerySettings.from(supportFragmentManager).enableZoom(true).build()) .add(medias) .build() ```
I want to start my Image Gallery by clicking on a specific photo. For this I use the setCurrentItem method. This works perfect for the main image, but the thumbnails...
Code copied from README.md: ScrollGalleryView .from(binding.scrollGalleryView) .settings( GallerySettings .from(childFragmentManager) .thumbnailSize(100) .enableZoom(true) .build() ) .add( image(imageUrl)) .build() This is the crash log I get: java.lang.NoSuchMethodError: No static method with(Landroid/content/Context;)Lcom/squareup/picasso/Picasso; in class...
E/AndroidRuntime: FATAL EXCEPTION: main Process: com.example.dragtest, PID: 12168 java.lang.NoSuchMethodError: No virtual method placeholder(I)Lcom/bumptech/glide/request/RequestOptions; in class Lcom/bumptech/glide/request/RequestOptions; or its super classes (declaration of 'com.bumptech.glide.request.RequestOptions' appears in /data/data/com.example.dragtest/code_cache/.overlay/base.apk/classes.dex) at ogbe.ozioma.com.glideimageloader.GlideImageLoader.(GlideImageLoader.java:26) at ogbe.ozioma.com.glideimageloader.GlideMediaHelper.image(GlideMediaHelper.java:13)...
Hi, I want to open this scroll gallery on a popup dialog but i am getting this error: `07-13 17:48:04.748 25834-25834/com.veinhorn.scrollgalleryview E/AndroidRuntime: java.lang.IllegalArgumentException: No view found for id 0x7f0c005f (com.veinhorn.scrollgalleryview:id/viewPager)...
My Code: #kotlin `galleryView = ScrollGalleryView .from(findViewById(com.sqt.ifb_remote.R.id.scroll_gallery_view)) .settings( GallerySettings .from(supportFragmentManager) .thumbnailSize(100) .enableZoom(true) .build() ) .add(infos) .build()` and get error as `Attempt to invoke virtual method 'com.veinhorn.scrollgalleryview.ScrollGalleryView com.veinhorn.scrollgalleryview.ScrollGalleryView.setThumbnailSize(int)' on a null...
``` List dynamicMediaList= new ArrayList(); for (String path : imagePath){ dynamicMediaList.add(MediaInfo.mediaLoader(new PicassoImageLoader(path))); } ScrollGalleryView.from(findViewById(R.id.scroll_gallery_view)) .settings( GallerySettings .from(getSupportFragmentManager()) .thumbnailSize(200) .enableZoom(true) .build() ) .add(dynamicMediaList) .build(); ```