Questions tagged [android-gallery]

Questions regarding using Android gallery application. Gallery application is the official media app installed on all Android mobile devices. The app allows browsing, organizing, sharing and editing of media (photos and videos).

Gallery application is the official media app installed on all Android mobile devices. The app allows browsing, organizing, sharing and editing of media (photos and videos).

Reference: Android Developers Gallery class overview

1181 questions
3
votes
2 answers

android gallery "snappiness"

I am wondering if there's a way to increase the "snappiness" of the stock android gallery. in other words, I want the speed of a fling to drop off quicker than it does by default. a given fling should result in less scrolling and should stop…
Jeffrey Blattman
  • 22,176
  • 9
  • 79
  • 134
3
votes
1 answer

How to move a photo/video to an album with Flutter on mobile (iOS and Android)?

Using Flutter on mobile (iOS and Android), how can I move media to an album? I tried to combine gallery_saver and photo_manager on iOS: I read a media AssetEntity from Recents Saved the AssetEntity file under an album with GallerySaver.saveImage.…
thedp
  • 8,350
  • 16
  • 53
  • 95
3
votes
1 answer

How can I get all images from directory in Environment.DIRECTORY_PICTURE and display in my custom gallery

I am making custom application galley for my application. Capture image from my custom camera and save image at xyz directory which is placed in Environment.DIRECTORY_PICTURES. i want to access all those images and display in custom galley…
Dens
  • 125
  • 11
3
votes
2 answers

Picking multiple images on clicking from gallery

I am new to android and I have written code to select multiple images from gallery and for achieving this i have written 2 ways of doing this. On onActivityResult I am using data.getClipdata to recieve each image. This is the first way of selecting…
Arsalan
  • 57
  • 11
3
votes
2 answers

Working with objects in android

I'm a flash developer with no previous Java experience, just starting to learn android development. I'm trying to make a simple kid's flash cards app, consisting of a load of images of animals, and a load of sounds that they make. Currently I have…
Emma Assin
  • 851
  • 2
  • 12
  • 23
3
votes
2 answers

I can't save file to gallery after taking photo by camera by using the FileProvider for Android 7.1.1

I build my app with FileProvider and I want to save the image after I take it. But I can't find the image in the gallery. I found these source codes from the Android Studio tutorial. I don't know what is the problem. I tried use debugger and I…
3
votes
2 answers

How to open default gallery app with particular album or folder?

Every example i found on net is opening gallery and get images from gallery as result. My need is i don't want result or images to my app. I just want to trigger gallery app with showing particular folder of images. My App Have separate folder to…
Rajaguru R
  • 96
  • 1
  • 8
3
votes
3 answers

Cursor error - Retrieving image from gallery

Currently I'm trying to retrieve the location of an image in my gallery and convert it into a File so that I can upload it to the internet. But I received this error instead. The error happened when I open the gallery and on selecting the image it…
azriebakri
  • 1,131
  • 2
  • 11
  • 36
3
votes
1 answer

Android Copy Image From Gallery Into New File

I'm trying to implement a feature for my app which allows users to pick a picture from the gallery for some proposals. I need to save this picture as a new picture before apply the changes (filters, crop, etc). So far I did: private void…
John Santos
  • 485
  • 4
  • 18
3
votes
0 answers

Camera Intent saves photos to both sd card and gallery

I am having issues with the camera intent. I am testing my app on real devices - on a Sony Xperia M4 Aqua and ST23 Miro. I managed to get the app working ok on the M4 Aqua, but now I have an issue on the ST23. Every time I capture an Image it is…
3
votes
1 answer

Which is the correct gallery app in AOSP?

I am trying to understand the google's implementation of the android image gallery from https://android.googlesource.com/ But I see there are 3 apps : Gallery, Gallery2, Gallery3D. What is the difference between these three? Which is the right…
Adi
  • 361
  • 1
  • 5
  • 23
3
votes
2 answers

Store an image from gallery to a different folder

So far what i have achieved is that i can store Image clicked from camera to a new folder Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); f = new File(Utils.getPath(), new Date().getTime() + ".jpg"); …
AmeyaG
  • 176
  • 1
  • 1
  • 10
3
votes
1 answer

How to filter out unwanted files using Intent.ACTION_GET_CONTENT

I'm using intent.ACTION_GET_CONTENT to allow a user to select images or video files only. this is the way am preparing my intent Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("image/* | video/*"); …
Edijae Crusar
  • 3,473
  • 3
  • 37
  • 74
3
votes
0 answers

Android: How to save videos played in VideoView into gallery?

I have developed an app that allows play video using VideoView. I could select videos from gallery and play. I would like to know how to save this played videos into gallery with a "Save Video" button. Can anyone guide me through this. My codings…
marian
  • 277
  • 1
  • 5
  • 17
3
votes
1 answer

How create Custom gallery by reading all images stored in android internal storage

I am developing an android app in which i am saving images in a specified folder after some editing.Now i want to show all these stored images in my activity. I m able to show a particular image by specifying a particular name.But i want to show all…
Soni Kumar
  • 283
  • 1
  • 4
  • 16