The MediaStore provider contains meta data for all available media on both internal and external storage devices.
0
votes
0answers
13 views
How to list all files with a specific extension fast and efficiently from a SD card in android?
I am trying to build an android app which lists all the files from the SD card that contain a specific extension. For e.g: pdf,mp3,txt etc.
I have tried using the android MediaStore class' ...
0
votes
1answer
19 views
Android: MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA
Can any ony give me guidelines on how to find the directory my Android device stores its images takem from a camera;
In the following code snippet, I intend to get a list of files in prior to ...
1
vote
1answer
29 views
Issue deleting a file entry from MediaStore
I try to delete a file entry from a MediaStore, using the following code:
noOfEntriesDeleted = contentResolver.delete(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
"_data=" + originalFile, null);
...
0
votes
0answers
17 views
MediaStore and own database - inner join
I've a problem with implement an inner join with my own database and MediaStore database. I've got a table with favorite tracks id, the point is that i want to get all tracks from media store with ...
0
votes
2answers
24 views
How to open listed files directly from a ListView in android
I am developing an application where particular files will be listed in a list view. Now when a user clicks on an item in the list the selected file should open in its default handler. For eg: if the ...
0
votes
0answers
21 views
MediaStore: Get songs based on another song genre
I'm trying to make a simple media player, I want to get a list of songs in the device based on another song genre, by now, following this question I've made this far:
public Song ...
0
votes
1answer
40 views
Cursor for an Image always returns null
I'm storing a picture from my Camera like this:
String newName = new BigInteger(130, new SecureRandom())
.toString(24);
File mydir = new ...
0
votes
1answer
32 views
save downloaded track to SDCard?
my problem is the Saved mp3 file has no duration and the title not appear
the Title sent to MediaStor from Json String
how i can save downloaded mp3 file as music ?
this is the code aim using ...
0
votes
0answers
48 views
e-mail an image after taking picture from camera
I have to e-mail an image after taking picture from camera. The method getlastImageId() return the image id.
private int getLastImageId(){
final String[] imageColumns = { MediaStore.Images.Media._ID, ...
0
votes
0answers
49 views
Update the Poweramp Playlist
I am trying to update the proprietory Poweramp Playlist from an android playlist.
I have
the Poweramp database structure
Poweramp content:// uris to select from
managed to complete the first step ...
0
votes
0answers
32 views
Extracting audio from video in Android
I am creating an app that records a video.
My next step is to extract audio from that video clip and then process it. Is there a way to extract audio from a video file in Android. I am using ...
0
votes
1answer
99 views
Android: Disk I/O error during query in MediaStore
I am having a problem with quering MediaStore provider. This issue is common for some devices rare but I cannot reproduce it myself. I have it from user crashlogs. I found out that it might be related ...
0
votes
0answers
53 views
How to get thumbnails of audio files by using MediaStore
I am now working on a simple music player and i need to get the thumbnail art of all audio files.
String selection = MediaStore.Audio.Media.IS_MUSIC + " != 0";
String[] projection = {
...
0
votes
0answers
101 views
Code to update/delete album art Uri in Android MediaStore
I'm running into problems when trying to update or delete the URL link to the album art that is saved in the android Audio MediaStore. I'm getting the album Id from the audio media store and then ...
1
vote
0answers
26 views
Can I add artist images to the Android MediaStore?
I know that you can add images to the Image MediaStore fairly easily, but is it possible to associate them with an artistId from the Audio MediaStore? I'm looking to download artist images for all of ...
0
votes
0answers
98 views
Error in adding music to alarm ringtone list in Android
I'm trying to extend the standard alarmclock app code for android.
https://android.googlesource.com/platform/packages/apps/AlarmClock/+/android-2.2_r1
The app currently supports only ringtones in the ...
0
votes
0answers
116 views
Android: How to create query to MediaStore for albums in folder [ Closed ]
Could anybody help me to make query to Android DB.
I need select all albums in selected folder.
For all songs I make this:
private Cursor allSongs() {
String[] projection = ...
1
vote
0answers
84 views
What is size of thumbnail returned by ACTION_IMAGE_CAPTURE intent
I'm using the standard camera intent to take a photo:
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(takePictureIntent, actionCode);
And then in ...
3
votes
2answers
277 views
How can I display a specific folder in Android Gallery3D (cooliris)?
I'm using Gallery3D (froyo-stable)
I'm trying to make a little app that displays only images from a specific folder in a gallery view.
Uri targetUri = Media.EXTERNAL_CONTENT_URI;
String folderPath = ...
0
votes
0answers
47 views
Android: Update Image Gallery with a class without extending activity
I would like to update the android Image Gallery after i have saved an image without needing to restart the mobile or use developer tools to refresh.
I have the following code:
package gmc;
import ...
0
votes
0answers
54 views
Get cover picture by song
Is it possible to get a cover picture by song and not by album.
Because I have one self combined album with songs and they all have different cover pictures.
But when I want to query them I always get ...
0
votes
0answers
48 views
Does music ID from media provider change when it's file is moved?
We have this file /sdcard/music/file.mp3 and it's corresponding ID in the MediaStore is 1. Will the ID change when:
the file is moved, say moved to /sdcard/music2/file.mp3
the file is renamed (might ...
1
vote
2answers
112 views
Getting all MP3 files on the external card
What i'm trying to achieve is getting all the mp3 files'URL and Title in an arraylist to return it. All from the folder: /ext_card/Music/ and all subfolders.
the options i've explored all seem to get ...
1
vote
0answers
68 views
EXTERNAL_CONTENT_URI Returning unexistent files
I am using this code to get all music files in the SD card, but when i delete a file it still shows it, and if i add a new file to the SD card it doesnt show it.
This is to get all music files
...
0
votes
0answers
284 views
“no entry for content://media/external/images/media/0” when using MediaStore.Images and contentResolver to get images stored on device
I have a very basic requirement. I need the last captured image (and its thumbnail) from the device camera which i can use.
I use the following code to get the image thumbnail:
String[] ...
0
votes
1answer
329 views
Querying MediaStore.Images.Media , how do I query both on EXTERNAL_CONTENT_URI and INTERNAL_CONTENT_URI?
And first of all thanks for your help.
I think this should be a rather trivial question for somebody not new to querying Content Providers. Not me... :-)
I need to query MediaStore.Images.Media to ...
0
votes
1answer
99 views
How do you save an image from an SD-card to android gallery as png?
I want to save image from my SD Card to the device gallery in android. The problem is that the image is savef as jpeg and not as png, and it loses quality and looks very bad.
this is my code:
File ...
1
vote
0answers
45 views
How to get the number of tracks from playlist?
Can anyone tell me how to get the number of members of playlist? I tried this but it does not work:
int PlayListCount = cursor.getInt(cursor.getColumnIndex(MediaStore.Audio.Playlists._COUNT));
It ...
1
vote
1answer
55 views
how to obtain picture in camera with MediaStore
I try to use MediaStore to get picutures that stored in SDcard:DCIM/Camera.my code is like this:
Cursor track = mContext.getContentResolver().query(
MediaStore.Images.Media.EXTERNAL_CONTENT_URI, ...
0
votes
1answer
117 views
Retrieving ContentProvider entry from a file path
I have a very specific need of retrieving Artist and Track from a song coming from a few different use cases. It is usually possible for me to query the MediaStore from a mp3 uri (scheme: content://) ...
0
votes
0answers
60 views
MediaStore.audio
I want to make an mp3 player. However, in the development I would like to know:
If it is possible to select a specific folder in the method:
...
0
votes
1answer
209 views
Delete a file from contentResolver only delete the entry from database (not file)
I try to delete a file using contentResolver but only delete the entry from database, not the real file. So I try delete first the entry and later the file:
int rows = ...
0
votes
0answers
90 views
Request For Image Thumbnail Returns the Original Image When Using SimpleCursorAdapter
I have been having a bit of a problem lately with retrieving thumbnails of images using a SimpleCursorAdapter. Whenever I request the value stored in the MediaStore.Images.Thumbnails.DATA column in ...
0
votes
0answers
81 views
How can I get the genres and the number of songs of each genres in one query in Android?
I get the genres:
public static CursorLoader getGenres(Context context) {
Uri uri = MediaStore.Audio.Genres.EXTERNAL_CONTENT_URI;
String[] columns = { MediaStore.Audio.Genres._ID,
...
0
votes
1answer
228 views
What does MediaStore.Images.Media.MINI_THUMB_MAGIC do?
I was just curious about what the MediaStore.Images.Media.MINI_THUMB_MAGIC column contains. Does it have anything to do with the image's thumbnail? Thank you.
2
votes
0answers
92 views
Phonegap: Access existing playlists from Android mediastore?
Does anybody know how I would access the android MediaStore.Audio.Playlists area from within phonegap? Is this at all posible? I am looking to add a simple media player to my existing app.
I have ...
0
votes
1answer
143 views
Android: deleting entries from MediaStore.Audio.Genres.Members table
I am writing an Android music player capable of editing MP3 song genres.
The procedure I'm following is:
Edit the genre tag in the MP3 file itself
Update the SqlLite MediaStore.Audio.Genres tables ...
0
votes
1answer
390 views
Async download of images to gridview from MediaStore
I have a gridview of about 1500 images. I'm using thumbnails from MediaStore to show them. But when I've populated the grid in UI thread it worked too slow for the first time (thumbnails not created ...
0
votes
1answer
100 views
How to get Recently Played songs Playlist with the help of MediaStore in android
How to get songs from Recently Played , Recentyly Added, Top Played...Playlist with the help of MediaStore in android..
Thanks,
2
votes
0answers
211 views
MediaStore get image data, thumbnail and folder
I have two lists. Let's call them AlbumsList and PicturesList.
The first one shows photo album cover (one of the images from it) it's name and number of pictures in it.
The second one shows all of ...
2
votes
1answer
325 views
Android: Read any specific image from sd card and display it as bitmap
I have retrieved the name of the very first image saved in the media on the sdcard of the emulator.
Now I want to display the image corresponding to it.. How can I do this ?
Here's the code
import ...
0
votes
2answers
147 views
How to get song title? Android
I have song on SD card and I'm trying to get title of that song:
File f = new File(filename);
String[] projection = { MediaStore.Audio.Media._ID,
...
0
votes
3answers
168 views
How to retrieve the current app folder where my android app has access?
I am starting a cam intent in my app and want that the picture will be stored inside my app folder in a images folder. To achieve this I am starting the cam intent like this
public void ...
0
votes
2answers
778 views
Load Bitmap Image From SDCard To ListView Android
I am trying to load bitmap image to listview from sdcard but imageview is not showing image.
Here is my code to get image from SDCard:
public static Bitmap getArtwork(Context context, int album_id) ...
0
votes
2answers
1k views
Get Album Art With Album Name Android
I want to display album art with album name in listview. But i am not getting the way to display album art. I have tried from cover art on android.
Here is my Code :
Cursor cursor = ...
0
votes
0answers
102 views
Android MediaStore returning too many audio files
I have the following code to get the audio files from a folder:
String path = Environment.getExternalStorageDirectory().getPath() + "/music_test";
Uri uri = ...
3
votes
0answers
498 views
MediaStore.Images.Thumbnails.getThumbnail returns wrong thumbnail instead of NULL
Consider the scenario as in this attached picture.
Three photos, one of them is a large GIF file (3MP).
I'm querying MediaStore in order to retrieve the correspondent thumbnails. If I initialize ...
1
vote
1answer
586 views
Android - MediaStore.Video.query() is returning null
I'm trying to retrieve the metadata from a video file (title, language, artist) using the method MediaStore.Video.query(). However, the method is always returning null. The code is bellow:
String[] ...
0
votes
1answer
801 views
List all music in MediaStore with the PATHs
Ok so I've been working on this project for a few days now and most of my time has been working out how to list all the music on a device in a LIST VIEW or something else, I have searched for a few ...
0
votes
1answer
69 views
Android MediaStore ActivityNotFound Exception, is a lie
I am trying to load a list of files showing only video files in the system gallery.
final Intent intent1 = new Intent(Intent.ACTION_PICK);
...



