gallery Questions
23
Solved
I want to create a picture chooser from gallery. I use code
intent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(intent...
17
I am developing an image filter app. But can't really try it if i don't have any images.
I know that i can test it in the phone, but it's not the same, since I need the error messages and other s...
10
unfortunately the solutions I've found didn't work on android 5.1.1.
I have a bitmap called source. I need to save it directly to my phone's gallery. My manifest contains <uses-permission androi...
13
Solved
i have an app with a gallery of images and i want that the user can save it into his own gallery.
I've created an option menu with a single voice "save" to allow that but the problem is...how can i...
Phaih asked 19/12, 2011 at 11:15
6
Solved
I'm looking for:
A list of the existing photo gallery names (hopefully their top thumbnail as well)
The contents of the gallery (I can then load thumbnails and full size as needed)
How would I go ...
Infectious asked 16/11, 2010 at 15:18
10
Solved
My flutter app uses the camera package to take a photo, which I save to the application's data directory (obtained from path_provider and the getApplicationDocumentsDirectory() function).
How can ...
3
Solved
I'm using the camera package to record videos in the app.
How can I save the recorded video to gallery, if it saves to the app cache directory?
I'm able to get the 'XFile' but I don't really know t...
20
Solved
When I load an image from the media gallery into a Bitmap, everything is working fine, except that pictures that were shot with the camera while holding the phone vertically, are rotated so that I ...
20
Solved
I am trying to open an image / picture in the Gallery built-in app from inside my application.
I have a URI of the picture (the picture is located on the SD card).
Do you have any suggestions?
Beaverette asked 30/1, 2010 at 22:11
3
Solved
I'am trying to use slidesPerView: 'auto' with spaceBetween: 20 property, but Swiper shows only one slide per view.
I want to show next slide right after the first one even if it will be cutted by ...
Voluntarism asked 11/7, 2019 at 19:59
11
Solved
I am deleting an image file from my application. I was doing
new File(filename).delete ();
This was actually deleting the file. But the image was still visible in the gallery.
On search i foun...
2
I am trying to make a photo gallery from my s3 photo bucket. the next step in my process is to configure CORS but when I use the code provided I get an error. Can someone please explain what I am d...
8
I am writing a test framework for an ios app that requires importing image from photos/gallery app for validation. I am using XCTest Framework for testing. I have looked over the Internet for some ...
9
Solved
Here's what I have (all generated dynamically, if that makes a difference) :
A list of images
A caption for each image
A thumbnail for each image
The page should load with one full-size image a...
Blare asked 4/3, 2009 at 21:42
4
I want to know the Image format (i.e. JPFG/PNG etc) of the images which I am getting from the gallery.
My need is to pic images from the gallery of the device and send it to server in Base64 forma...
Briton asked 23/2, 2012 at 13:59
6
Solved
How can I display all images from a specific folder on android gallery like, for example, whatapp does.
I`m using MediaScannerConnectionClient
File folder = new File("/sdcard/myfolder/");
allFile...
10
Solved
I have been trying for a couple of days now to configure my thumbnail gallery so all the images appear the same height and width. However, when I change the CSS code to,
max-height: 150px;
max-widt...
5
I am looking to create a portfolio using Django. I have tried using ImageField but it only allows me to upload and replace 1 photo.
I am new to Python and Django programming. How would I create a...
11
Solved
When I instal nextgen-gallery plugins. This error message appears
Downloading update from https://downloads.wordpress.org/plugin/nextgen-gallery.zip…
Unpacking the update…
Could not create dire...
2
Assuming I know that the Gallery has an album with a certain name X, what intent or broadcast can I make to open Album X with the Gallery app?
There are plenty of examples showing how to select a ...
Whittling asked 29/2, 2012 at 11:57
2
I currently want to make a marquee of several images, but my code only allows one. Do you know any way I could add several images to this code? (I have already tried adding the images directly into...
Potsdam asked 7/12, 2011 at 15:2
4
Solved
I'm using the code below to pick an image file from device gallery:
First I call this piece of code:
Intent i = new Intent();
i.setType("image/*");
i.setAction(Intent.ACTION_GET_CONTENT);
startAc...
Brentbrenton asked 3/6, 2016 at 12:48
2
Solved
I get media file from Gallery.
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*,video/*,audio/*");
startActivityForResult(Intent.createChooser(intent, "Select Media...
Shift asked 18/12, 2014 at 17:26
6
I trying to make a gallery. I know how to get all photos and to show them in grid view. But can someone explain how to get and show folders(with photos)?
i've got error after launching my apk file...
Pagoda asked 15/5, 2014 at 18:28
6
I'm trying to save a picture from camera in a real device, but can't find a way.
By now I get it saved in a File, but can't get it in the gallery..
My code at this moment is:
File _imagenTempor...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.