我正在尝试播放驻留在this位置的音频,在Android原生mp3播放器中。我尝试使用MediaPlayer类,但没有用。尝试使用意图,但它只适用于三星集。请建议一些好的材料,我可以在Android原生应用程序中播放链接的mp3音频。路径是基础的,然后是魔鬼的原则.mp3。恶魔的原则.mp3。这个空间有什么不同。我是android的新手。
这是代码。
package com.example.audiotest;
import java.io.IOException;
import android.app.Activity;
import android.content.Intent;
import android.media.AudioManager;
import android.media.MediaPlayer;
import android.media.MediaPlayer.OnErrorListener;
import android.media.MediaPlayer.OnPreparedListener;
import android.net.Uri;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent playIntent = new Intent(Intent.ACTION_GET_CONTENT, Uri.parse("http://www.fundamentalalvarado.com/assets/sermons/bible-doctrine-series/032413-pm-The%20Doctrine%20of%20the%20Devil.mp3"));
// playIntent.setType("audio/mp3");
startActivity(Intent.createChooser(playIntent, "Select an audio player"));
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}