Closed firestork closed 5 years ago
@firestork For now no. I plan to add it in next release.
Thanks you.
Is it already added? How to add text in image?
I look forward to this feature too.
does it added in the current release @VEINHORN ???
@UniqueJoy Hi! At the current moment, i mean version 1.2.6
this feature is unsupported. :/ But you can change text in ActionBar like this (using ScrollGalleryView callbacks). But I'm working on this feature and I hope it will appear in next release.
@firestork @lesjaw @andreluizreis @UniqueJoy Starting from version 1.2.7
you can now add images with description using MediaInfo image(String url, String description);
method from MediaHelper interface (using new GalleryBuilder approach):
.add(image(
"https://i.pinimg.com/originals/1b/d3/f0/1bd3f0e146da86f9c504e89a0b7e1403.jpg",
"Old Ship"
))
or directly to the ScrollGalleryView using addMedia()
method:
galleryView.addMedia(MediaInfo.mediaLoader(
new PicassoImageLoader(
"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/USRC_Salmon_P_Chase_-_LoC_4a25817u.jpg/1200px-USRC_Salmon_P_Chase_-_LoC_4a25817u.jpg"),
"The word barque entered English via French, which in turn came from the Latin barca by way of Occitan, Catalan, Spanish or Italian."
));
So now text on each image looks like this:
Can i add text for each imageview