Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- private void selectAudioFile()
- {
- Intent intent;
- intent = new Intent();
- intent.setAction(Intent.ACTION_GET_CONTENT);
- intent.setType("audio/mpeg");
- startActivityForResult(Intent.createChooser(intent, "Choose Audio"), REQ_CODE_PICK_SOUNDFILE);
- }
Advertisement
Add Comment
Please, Sign In to add comment