Dilan1991

Untitled

Apr 30th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. private void selectAudioFile()
  2. {
  3. Intent intent;
  4. intent = new Intent();
  5. intent.setAction(Intent.ACTION_GET_CONTENT);
  6. intent.setType("audio/mpeg");
  7. startActivityForResult(Intent.createChooser(intent, "Choose Audio"), REQ_CODE_PICK_SOUNDFILE);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment