Hi, friends!

In application i'm developing i need to open some standard dialog to
browse files on the phone. After picking one file i'll attach it to
the message.
In Android Dev Guide i found such way to solve my problem:

                Intent intentBrowseFiles = new Intent
(Intent.ACTION_GET_CONTENT);
                intentBrowseFiles.setType("*/*");
                intentBrowseFiles.addCategory
(Intent.CATEGORY_ALTERNATIVE);
                MyActivity.this.startActivityForResult
(intentBrowseFiles, PICK_FILE);

But in that dialog, when i'm trying to pick sound file, i start to
playback. And one more problem - using that dialog i can see only
gallery and music tracks.

Is there any other way to display such kind of dialog? Or maybe stop
to playback the music?

Thanks :)

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to