Song picker for Android
Asked Answered
B

1

9

Is there a song picker for Android that can be invoked programatically?

I'm looking for something similar to iPhone's MPMediaPickerController, which shows a view from where the user can select songs.

Bluenose answered 5/7, 2010 at 13:37 Comment(1)
Mayebe this is something for you: code.google.com/p/eyes-free/source/browse/trunk/RockLock/src/…Glazed
T
15

You can send an intent of type "ACTION_PICK" or "ACTION_GET_CONTENT". For example:

    Intent i = new Intent(Intent.ACTION_GET_CONTENT);
    i.setType("audio/*");
    Intent c = Intent.createChooser(i, "Select soundfile");
    startActivityForResult(c,1);

see here for more info:

http://developer.android.com/reference/android/content/Intent.html#ACTION_GET_CONTENT

Tritanopia answered 6/7, 2010 at 5:17 Comment(1)
Beware, not every application has a picker. I just got a crittercism report that the activity wasn't found on a customer device.Shuck

© 2022 - 2024 — McMap. All rights reserved.