Tagged Questions
The mediastore tag has no wiki summary.
23
votes
2answers
9k views
Get filename and path from uri from mediastore
I have an onActivityResult returning from an mediastore image selection which I can get a URI for an image using the following:
Uri selectedImage = data.getData();
Converting this to a string ...
12
votes
1answer
5k views
How can I refresh MediaStore on Android?
This started out as a general user question on Android forums. However it's become, by necessity, a programming question. Here's my problem.
Android has a service - MediaScanner - which runs in the ...
10
votes
4answers
257 views
Android: how to get a video thumbnail of a file that's private to your application?
Question:
How do you get a video thumbnail for an application-private file?
Specifically, is there a way to extract video frames from an .mpeg file directly?
Background:
My application includes a ...
6
votes
5answers
15k views
How do I save data from Camera to disk using MediaStore on Android?
For my application, I'd been using my own Camera class for taking images and my own database but soon enough I couldn't really keep up with changes and I decided to use the built in camera application ...
5
votes
4answers
3k views
Display big image from SD card in Android
In Android, how do you display an image (of any size) from the SD card, without getting an out of memory error?
Is it necessary to put the image in the Media Store first?
A pseudo-code example ...
2
votes
1answer
43 views
Getting Media Title from a File
I used import java.io.File; to import all music files from my sdcard,
Now i want the Title's of the files using Mediastore but how do I do that?
This is the code I Use now.
public class ListFiles ...
2
votes
1answer
89 views
How to clear Mediastore before setting ringtone
When I set a ringtone from my app works once, but when running the code again, it tries to create a duplicate entry in the media store, which creates problems. Without creating seperate unique file ...
2
votes
3answers
246 views
Files not removed upon delete and still shown in Listview
I have made a program which populates a listview with videos stored on the device and plays them. It have also tried to implement the functionality of deleting the file using file.delete function. ...
2
votes
2answers
150 views
Android Can I use JOIN at mediastore query
is there any method to use join in a query at mediastore data?
Or also is there any method to access the mediastore data through a database and not with the content provider?
Thank you.
2
votes
1answer
411 views
Getting efficiently the Genres of the Audio files in the MediaStore
I am trying to synchronize my own database for tracks and albums (that contains additional data). I have so far successfully pulled albums and tracks from the MediaStore.
What I cannot manage to do ...
2
votes
1answer
1k views
List all camera images in Android
How do you get a list of all camera images of an Android device?
Is it through the MediaStore? How?
2
votes
1answer
2k views
Get list of photo galleries on Android
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 ...
2
votes
1answer
1k views
Is there any way to look for an image using the path? MediaStore.Images.Thumbnails (Android)
I'm using MediaStore.Images.Thumbnails in order to show the images the user have. But i'm not able to get an image through its path.
Is there any way to look for an image using the path?
String [] ...
1
vote
1answer
68 views
Android Mediastore: How to efficiently retrieve all songs of a certain genre?
I know how to retrieve the genre of a particular song, (see getting the genres), but I want to retrieve all songs of a particular genre. Since "genre" does not seem to be one of the columns for a ...
1
vote
1answer
51 views
Using the standard Android Gallery as the basis for my own app
I am trying to do something that should be easy enough but I am in really bad shape because I can't find any single valid answer for this.
Is there a way to get (or build) the basic Gallery you find ...
1
vote
2answers
44 views
How can I limit a user to only picking photos from Android's MediaStore?
I want users to be able to choose a photo from their media library but don't want them to be able to choose a video. I'm having trouble limiting them to only choosing a photo. When I open the gallery ...
1
vote
0answers
86 views
Android, MediaStore.EXTRA_OUTPUT, stores two images
I am using: intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile("..path/filename.png") )
in conjunction the appropriate methods.
It works in that I do get an image stored in a file at the ...
1
vote
1answer
116 views
Filter a managedQuery by file extension (or, alternatively, file type) for an Android Cursor
I want to do a managedQuery using Android SDK where the results returned are filtered by their respective file extension (e.g. not the name, necessarily). I've done quite a bit of researching and am ...
1
vote
1answer
111 views
How to query for songs in playlists on Android SDK?
So my question is how to query for playlist content. I can make a query to display all the playlists, but how to make a query to display songs in a specific playlist.
Thanks
1
vote
0answers
145 views
How to get Album art from MediaStore and display it in ImageView in Android?
How to I get Album art from MediaStore and then display it in ImageView. I've searched it and couldn't find working code.
Thanks!
1
vote
0answers
36 views
What happens to cursors to MediaStore when the underlying database gets updated?
In my app (a small mp3-player for an university project) I'm doing query MediaStore.Audio.Media.EXTERNAL_CONTENT_URI. Currently, I'm caching the songs to an array, but I'm thinking of moving it over ...
1
vote
0answers
117 views
Specify the album of a recorded video in Android
I am trying to record a video in Android using the MediaStore.ACTION_VIDEO_CAPTURE intent. I can record the video in the default library album, but I cannot store anywhere else. I have tried to use ...
1
vote
2answers
265 views
Playing audio from MediaStore on a Media Player Android
Is there a way to play audio obtained from MediaStore through the use of the MediaPLayer, Or am I going in the completely wrong direction? I've looked and MediaStore.Audio so far but nothing is really ...
1
vote
2answers
445 views
Android getting image ID chosen from SDCard and set it to ImageView
So, basically, I'm trying to change an ImageView from images in SDCARD.
Here's some code from me :
String[] images = {MediaStore.Images.Thumbnails._ID};
Cursor cc = ...
1
vote
1answer
228 views
how to dynamically display the single image from the sdcard
I had done the program the display all the images from the sdcard dynamically. But now ,I want to display single image dynamically from the sdcard instead of display all images .
my coding is as ...
1
vote
0answers
172 views
Image gallery with “select folder” option
I have installed a number of apps that have their own image gallery functionality (not using another app via intents). The default view is usually a list of the folders in my SD card that contain ...
1
vote
1answer
855 views
problem with managed query
I'm trying to write application, which lists all mp3 files from sd card.
String[] columns = new String[] {
MediaStore.Audio.Media._ID,
MediaStore.Audio.Media.TITLE,
...
1
vote
0answers
399 views
Image quality in intent ACTION_IMAGE_CAPTURE
My program uses ACTION_IMAGE_CAPTURE intent to capture images.
When added to the parameter MediaStore.EXTRA_OUTPUT camera automatically opens with the quality 5 megapixel (my phone is a milestone 2).
...
1
vote
1answer
552 views
What is the best way for pick a video in Android
I got a perfect *Intent.ACTION_PICK* with my picture.
startActivityForResult(new
Intent(Intent.ACTION_PICK,
...
1
vote
2answers
414 views
Android - Rotated text on a large bitmap
I have a picture (bitmap) and I want to draw some shapes and rotated
text on it.
This works fine as long as the picture doesn't get too large. However,
when using a picture (2560 x 1920 pixels)taken ...
1
vote
2answers
626 views
Empty cursor from the MediaStore
I can't figure out why this cursor is empty in just this one particular device. but works on all other android devices.
There are several audiofiles on the sdcard, and the stock mediaplayer can find ...
1
vote
2answers
1k views
Android MediaStore Insert Image Additional file created
I am inserting an Image in the MediaStore cache using the following code snippet:
MediaStore.Images.Media.insertImage(getContentResolver(), selectedFile.getParent() + file.separator + ...
1
vote
1answer
173 views
Autostart recording in MediaStore
I managed to record audio by sending intent with action MediaStore.Audio.Media.RECORD_SOUND_ACTION.
But is there a way to tell MediaStore application to automatically start recording without the need ...
1
vote
1answer
2k views
Android 2.2 GetThumbnail returns incorrect Bitmap
I'm using the MediaStore.Video.Thumbnails.getThumbnail() method to
fetch thumbnails for files that I am displaying in a list. This works
well to begin with, but after a while the thumbnails that I ...
1
vote
1answer
1k views
Android MediaStore.Images.Media.getBitmap returns error
ContentResolver cr = getContentResolver();
Uri pic = Uri.parse("content://media/external/images/media/3");
Bitmap bm = Media.getBitmap(cr,pic);
The above code is written in onCreate method of my ...
1
vote
3answers
2k views
Setting Ringtone notification from SD card file
My goal is to set the users notification sound from a file that is stored onto the SD card from with in the application. I am using this code:
if(path != null){
File k = new File(path, ...
1
vote
1answer
2k views
Small picture retrieved from Camera although specified MediaStore.EXTRA_OUTPUT in 2.X
I just don't get it: when I use the camera with an intent and also specify an output file, the returned image is always very small on many devices (e.g. Motorola Milestone 2.1, HTC Desire 2.1, ...
1
vote
2answers
2k views
Managing media using the Android MediaStore
I manage media (images, sound) of my app directly, reading and saving to the SD card. Should I be using the MediaStore instead? I'm not quite sure what the MediaStore is for, and the javadoc is not ...
1
vote
1answer
560 views
How do I use the android media services to return that media to my activity?
I'm interested in capturing media to use in my activity in two ways:
1) capturing immediately from the supplied app. (like ...
1
vote
3answers
2k views
Accessing Videos AND Photos on Android 1.5 +
So I'm trying to allow the user to pick a particular piece of media with my Android Application using the method described here:
...
1
vote
1answer
626 views
Android: getting image locations
am looking for a way to find images on the SD card, or at least images taken by the camera.
The ideal solution would be getting a collection of file paths or URIs for the images. I guessing you can ...
0
votes
2answers
36 views
error calling MediaStore.ACTION_VIDEO_CAPTURE
i'm trying to create an app that allows video recording. i know that using MediaStore.ACTION_IMAGE_CAPTURE, it actually calls the camera system from my app and after taking the picture, it will return ...
0
votes
2answers
33 views
Playing next audio from media store
I am using android's Media store to list all the Audio file which is stored in the device.
String[] proj = ...
0
votes
0answers
13 views
The difference between Full Scanning and Scanning a file
I'm sorry about my english.
I make a directory with file.mkdir and scan that file(folder)
public boolean makeDir(String filePath) {
File srcFile = new File(filePath);
boolean retValue = ...
0
votes
0answers
30 views
Android: MediaStore is missing artists and albums
A project I'm currently working on requires the application to discover all audio tracks on an android device. In addition to the tracks, it must also be able to group them by album and artist.
I ...
0
votes
0answers
47 views
Android: How to notify MediaScanner that contents deleted?
I'm now developing Android app using MediaScanner, and now I can access to contents data managed by Sqlite database and refresh the newly added contents using scanFile method.
What I want to do is to ...
0
votes
0answers
28 views
Sorting Music Files in Android
I was wondering if there is a way to sort audio files in Android. In other words, if I have an album, I would like to get all the songs on that album. Likewise, if I have an artist, I would like to ...
0
votes
0answers
39 views
How to Use MediaStore to display all images in GridView
I need a little help in trying to figure out a problem that I am having. I have an application that will query all the images on the phone and display them in a GridView. I was able to do this and ...
0
votes
0answers
39 views
Any fast way to get the list of folders which contains image?
I am working on a gallery. Here is the work flow:
(1) Display a list of folders which contain images
(2) Display a Gallery View that shows selected folder. (I can do it)
I know I can write a loop to ...
0
votes
0answers
20 views
How to query all albums to a given artist
I need a way to display all albums of a given artist. All I found so far ist a way to list all albums which contain at least one songe of the artist - but that's not, what I want. I'm new to android ...