拿起音频文件android

时间:2013-07-30 10:50:24

标签: android

我需要从SD卡获取音频文件并播放它。我认为这可以通过获取音频文件的URI来完成。因此,要选择一个我正在使用以下代码的音频文件:

Intent intent = new Intent();
intent.setType("audio/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,"Select Audio "), reqCode);

现在,我可以浏览音频文件并选择其中一个。

问题:如何在onActivityResult中读取已挑选文件的URI?

5 个答案:

答案 0 :(得分:36)

如果要选择音频,可以在项目中添加以下代码。

Intent intent_upload = new Intent();
intent_upload.setType("audio/*");
intent_upload.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(intent_upload,1);

并在同一个Activity中覆盖onActivityResult,如下所示

@Override 
protected void onActivityResult(int requestCode,int resultCode,Intent data){

  if(requestCode == 1){

    if(resultCode == RESULT_OK){

        //the selected audio.
        Uri uri = data.getData(); 
    }
  }
  super.onActivityResult(requestCode, resultCode, data);
}

答案 1 :(得分:2)

 first of all open gallery through intent -
  public void openGalleryForAudio() {
        Intent videoIntent = new Intent(
                Intent.ACTION_PICK,
                android.provider.MediaStore.Audio.Media.EXTERNAL_CONTENT_URI);
        startActivityForResult(Intent.createChooser(videoIntent, "Select Audio"), AUDIO_REQUEST);
}


Then onActivityResult you should catch data - 
if (requestCode == AUDIO_REQUEST && null != data) {
                if (requestCode == AUDIO_REQUEST) {

                    Uri uri = data.getData();
                    try {
                        String uriString = uri.toString();
                        File myFile = new File(uriString);
                        //    String path = myFile.getAbsolutePath();
                        String displayName = null;
                        String path2 = getAudioPath(uri);
                        File f = new File(path2);
                        long fileSizeInBytes = f.length();
                        long fileSizeInKB = fileSizeInBytes / 1024;
                        long fileSizeInMB = fileSizeInKB / 1024;
                        if (fileSizeInMB > 8) {
                            customAlterDialog("Can't Upload ", "sorry file size is large");
                        } else {
                            profilePicUrl = path2;
                            isPicSelect = true;
                        }
                    } catch (Exception e) {
                        //handle exception
                        Toast.makeText(GroupDetailsActivity.this, "Unable to process,try again", Toast.LENGTH_SHORT).show();
                    }
                    //   String path1 = uri.getPath();

                }
            }

 This function is use for absolute path of audio file
 private String getAudioPath(Uri uri) {
        String[] data = {MediaStore.Audio.Media.DATA};
        CursorLoader loader = new CursorLoader(getApplicationContext(), uri, data, null, null, null);
        Cursor cursor = loader.loadInBackground();
        int column_index = cursor.getColumnIndexOrThrow(MediaStore.Audio.Media.DATA);
        cursor.moveToFirst();
        return cursor.getString(column_index);
    }

答案 2 :(得分:0)

final Uri uri=Uri.parse(Environment.getExternalStorageDirectory()+"/Audio/abc.mp3");

/Audio/abc.mp3替换为your path of mp3 file on sdcard

别忘了检查外部存储是否已安装。 Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)

答案 3 :(得分:0)

//要从设备中选择音频文件。在通话活动中放置以下代码

int REQUEST_CODE = 1001;

 Intent audioIntent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Audio.Media.EXTERNAL_CONTENT_URI);
 startActivityForResult(audioIntent,REQUEST_CODE);

//在活动中覆盖onActivityForResult方法

@Override 
protected void onActivityResult(int requestCode,int resultCode,Intent data){

  if(requestCode == REQUEST_CODE && resultCode == RESULT_OK ){

        //the selected audio.Do some thing with uri
        Uri uri = data.getData(); 


  }

  super.onActivityResult(requestCode, resultCode, data);
}

答案 4 :(得分:0)

无需在此处添加音频/ *之类的类型。搜索此类动作将崩溃。 尝试这个。它对我有用。

val intent = Intent(Intent.ACTION_PICK, android.provider.MediaStore.Audio.Media.EXTERNAL_CONTENT_URI)
        startActivityForResult(intent, AUDIO_REQUEST_CODE)