Questions tagged [image-gallery]

An image gallery is set up to display multiple images. They can be basic or creative. Basic ones often have a grid layout with all of the images showing at once. More creative ones are often created using javascript and css3 and include animations and transitions.

An image gallery is set up to display multiple images regardless of the platform. They can be basic or creative. Basic ones often have a grid layout with all of the images showing at once. More creative ones are often created using javascript and css3 and include animations and transitions.

1373 questions
5
votes
5 answers

Android Cover Flow gallery and remove space between

I want to implement cover flow view as shown below image. I also tried with cover flow but cant achieved perfect view as show in image. Reduce the space between the items. this.fancyCoverFlow.setSpacing(-90); I tried with this line and its…
kyogs
  • 6,766
  • 1
  • 34
  • 50
5
votes
1 answer

Photo Gallery / Grid for Twitter Bootstrap v2.1.1

I'm really liking Twitter Bootstrap so far and am finding it fairly easy to implement. The next step is to implement some-type of photo gallery for some pages and for future blog posts. Ideally I would like rows of photos (perhaps 4/row) with nice…
Patrick
  • 159
  • 1
  • 2
  • 11
5
votes
1 answer

Javascript Image Gallery

(I have limited coding experience) I have a template file for a website and currently the image gallery for the site opens in a new page, I would like instead for the image gallery to not open additional pages/tabs and instead contain images in rows…
user1771351
  • 113
  • 1
  • 1
  • 6
5
votes
0 answers

How to delete a thumbnail programmatically from galley after deleting an image?

I am developing an app which hides images. I am able to delete images but gallery won't refresh itself & displays the thumbnail of an image which is hidden by my app. I am using sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, …
5
votes
1 answer

In-Memory cache and DiskCache for Images Strategies

Now, I am developing a news reader app like BBC news iOS. see in BBC News In my app, I must download image from server to and show it in view to make users easier to choose the news they want to read. For more performance, I must cache image to…
hahv
  • 582
  • 1
  • 4
  • 16
5
votes
4 answers

How to make an image gallery with java

For class I'm working on my first GUI application. It's just a simple image viewer with four buttons: Previous, Next, Stop, Play. Previous and Next work fine, but honestly I don't even know how to begin working on the slideshow part (Play & Stop). I…
ThisBetterWork
  • 505
  • 3
  • 12
  • 24
4
votes
3 answers

How to implement an image gallery inside an application mimicking the iPhone's default gallery?

I want to implement an image gallery inside my iPhone app which will only have those images from device gallery that have been either selected from inside the app or pictures taken from inside the app. Please advice on any simple methods to do so.
Anand V
  • 423
  • 3
  • 13
4
votes
2 answers

How to get an image metadata such as alt text, caption and description from media library in wordpress

I am trying to get metadata associated with the featured image but get_post_meta keeps returning empty. $image_alt_text = get_post_meta($image_id, '_wp_attachment_image_alt', true); This works and returns the data, but the code below does not…
dvlpr.963
  • 384
  • 1
  • 4
  • 15
4
votes
0 answers

Taking and picking photos on Poco X3 with Android 11 does not work

I recently updated my Poco X3 NFC 64GB test device to Android 11: MIUI Global 12.0.8(RJGEUXM) Android 11 RKQ1.200826.002 Ever since I am unable to take or pick photos in my app. On other Android 11 devices (and emulator) everything works fine. The…
Janneman
  • 1,093
  • 15
  • 23
4
votes
0 answers

What is the Android Jetpack alternative to CursorLoader?

Loaders have been deprecated for ViewModel and LiveData and Android now has a Paging Library for pagination. Most examples over web explain fetching images from web endpoints. I want to create an image gallery in my app and want to use Jetpack…
Chandan Pednekar
  • 525
  • 5
  • 19
4
votes
1 answer

How can I get Uri of a private Folder in Android?

I am trying to make an android camera app with image gallery. The images captured are saved to a private directory: Android/data/com.example.newcamera/files/pictures. Whenever I am using INTERNAL_CONTENT_URI or, EXTERNAL_CONTENT_URI as Uri, The app…
kcpaul
  • 41
  • 5
4
votes
2 answers

CSS GRID IMAGE GALLERY: How to resize all images to be the same size and maintain the same distance?

Just trying to create a simple image gallery that's 3 x 3 using CSS grid. I thought using a container with the following css styles would resize them all equally: .portfolio { display: grid; grid-template-rows: repeat(3, 200px); …
John C.
  • 51
  • 1
  • 2
  • 5
4
votes
2 answers

object-fit: fill; does not working

I wrote this responsive image gallery code with using of flexbox I set background-color style of every flexbox_item to cyan , to show the dimensions of every flexbox_item block : background-color: cyan; Now i want images to fill their blocks , so…
Amir
  • 63
  • 1
  • 4
4
votes
3 answers

ViewPager for images on SD card not working

I am a newbie in android app development and I am following this tutorial to create an image gallery. https://deepshikhapuri.wordpress.com/2017/03/20/get-all-images-from-gallery-in-android-programmatically/. It's working perfectly but now I want to…
user8549777
4
votes
1 answer

Can't set wallpaper from a bunch of URLs (string array). How to solve this?

I'm currently making an app that displays images from the web in a grid layout(recyclerView). When one image is selected another activity is opened and displays the same image in fullscreen(just like an image gallery). I'm using Glide library for…
Sebin Paul
  • 169
  • 1
  • 15