如何发挥从原料/资产的文件夹的音频文件的本地/默认媒体播放器?(How to play audio

2019-07-18 16:06发布

我知道我可以在媒体播放器一样,播放MP3文件:

Intent intent = new Intent();  
intent.setAction(android.content.Intent.ACTION_VIEW);  
File file = new File(YOUR_SONG_URI);  
intent.setDataAndType(Uri.fromFile(file), "audio/*");  
startActivity(intent);

下面这个环节我试图让URI,如:

Uri audio = Uri.parse("android.resource://com.audio.test/"+R.raw.audio1);
Log.d(TAG,"uri:"+audio.toString());

Uri audio = Uri.parse("android.resource://com.audio.test/raw/audio");
Log.d(TAG,"uri:"+audio.toString());

其输出预期的结果:

01-24 15:28:23.190: D/MyClass(30234): uri:android.resource://com.audio.test/2131034112
01-24 15:29:13.: D/MyClass(30234): uri:android.resource://com.audio.test/raw/audio1

但是,这是行不通的。 媒体播放器不启动。 任何想法,为什么?

更新

我包括一个createChooser,而是与玩家预期的名单,我收到了“无法找到应用程序来执行此操作”的消息。 这是我确切的代码:

 public void playAudio(){
          Intent viewMediaIntent = new Intent();   
          viewMediaIntent.setAction(android.content.Intent.ACTION_VIEW);        
          Uri audio = Uri.parse("android.resource://com.audio.test/raw/"+R.raw.audio1);       
          Log.d(TAG,"uri:"+audio.toString());
          viewMediaIntent.setDataAndType(audio, "video/*");   
          viewMediaIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP);
          Log.d(TAG,"Starting");
          Intent i = Intent.createChooser(viewMediaIntent, "Play Music");
            mGap.startActivity(i);
          Log.d(TAG,"Started");
      }

更新2

感谢您@CommonsWare的解释。 现在我明白为什么它不工作。 但问题仍然存在,我可以实现我想要什么? 获取文件的乌里存储在原始/资产的文件夹与文件://方案?

更新3

我发现了一个办法做到这一点,虽然这不是它的工作原理是最好的。 我只有3个文件,这并不耽误执行的。 我复制从RES /生到手机上的本地目录中的文件,并从该文件中获取的URI。 如何避免这一步骤任何建议表示赞赏。

 public void copyFileToDir(String audioFile){
          File test = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_MUSIC + "/" + audioFile + ".mp3");
          if (test.exists()){
              Toast.makeText(mGap, "Exists", Toast.LENGTH_SHORT).show();
              return;
          }
          File dest = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_MUSIC);
          int i = mGap.getResources().getIdentifier("raw/"+audioFile, "string", mGap.getPackageName());
          InputStream in = mGap.getResources().openRawResource(i);
          // Used the File-constructor
          OutputStream out;
        try {
            out = new FileOutputStream(new File(dest, audioFile + ".mp3"));
              // Transfer bytes from in to out
              byte[] buf = new byte[1024];
              int len;
              try {
                  // A little more explicit
                  while ( (len = in.read(buf, 0, buf.length)) != -1){
                       out.write(buf, 0, len);
                  }
              } finally {
                  // Ensure the Streams are closed:
                  in.close();
                  out.close();
              }
        } catch (FileNotFoundException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } 


      }


      public void playAudio(String audioFile){
          copyFileToDir(audioFile);
          File dest = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_MUSIC + "/" + audioFile + ".mp3");
          Uri r = Uri.fromFile(dest);         
          Intent viewMediaIntent = new Intent();   
          viewMediaIntent.setAction(android.content.Intent.ACTION_VIEW);                                 
          viewMediaIntent.setDataAndType(r, "audio/*");   
          viewMediaIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP);          
          Intent i = Intent.createChooser(viewMediaIntent, "Play Music");
            mGap.startActivity(i);

      }

      public void playVideo(String movieurl){
          Intent intentToPlayVideo = new Intent(Intent.ACTION_VIEW);
          intentToPlayVideo.setDataAndType(Uri.parse(movieurl), "video/*");
          Log.d(TAG,"Playing:" + movieurl);
          mGap.startActivity(intentToPlayVideo);
      }

Answer 1:

当你调用startActivity()您要开始活动。 的Intent传递给startActivity()表示什么活动-你要开始-或者选择了一组可用的活动的。 在你的情况,您要查看android.resource:// Uri 。 这不是一个http:// Uri ,也不是https:// Uri ,也不是file:// Uri

该宣传自己作为支持操作这样的有,在他们的活动<intent-filter>什么的声明Uri ,他们支持方案。 你是假设有一个应用程序,用户的设备上,支持的android.resource://方案。 就个人而言,我不认为这是一个安全的假设。 http://https:// ,并且file://应该是安全的,并且content:// (对于ContentProvider )是相当有可能为好。

例如,AOSP音乐应用不支持android.resource方案,基于其当前清单内容 。



Answer 2:

任何原因,你为什么不直接用MediaPlayer的? 您可以直接通过资源ID

int resourceId = R.raw.your_media_resource;
MediaPlayer mediaPlayer = MediaPlayer.create( context, resourceId );
mediaPlayer.setOnCompletionListener( new OnCompletionListener()
{
    @Override
    public void onCompletion( MediaPlayer mp )
    {
        mp.release();
    }
} );
mediaPlayer.start();


Answer 3:

如果你只需要设置声URI的Notification.Builder ,使用

 Uri.parse("android.resource://com.my.great.application/"
                        + R.raw.mysound);

其中R.raw.mysound可以像mysoud.ogg在原料资源文件夹。

但是我不知道,如果MP3正好支持。 由于这些应用程序只是内部资源,尽量转换成OGG。



Answer 4:

这是不可能的使用内容从您的RES文件夹中的应用程序之外。 内容是内部应用程序,并从App外不可达。 如果你想使内容提供你要实现自己的ContentProvider返回数据。

@CommonsWare是正确的。 见http://iserveandroid.blogspot.nl/2011/01/how-to-access-resources-from-other.html



文章来源: How to play audio file from raw/assets folder on the native/default media player?