我有一个通过MediaPlayer作为服务播放广播的应用。是否可以在Service类中使用MediaController? 问题是我可以使用findViewById。
我试着让我的LinearLayout进入onPrepeared方法......
public class RadioPlayer extends Service implements OnPreparedListener, MediaController.MediaPlayerControl {
@Override
public void onCreate() {
super.onCreate();
mediaPlayer = new MediaPlayer();
mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
mediaPlayer.setOnPreparedListener(this);
mediaController = new MediaController(this, false); mediaPlayer.setDataSource(url);
mediaPlayer.prepareAsync();
}
@Override
public void onPrepared(MediaPlayer mediaPlayer) {
mediaPlayer.start();
mediaController.setMediaPlayer(this);
LayoutInflater inflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(R.layout.main, (ViewGroup) findViewById(R.id.main_program_view));
mediaController.setAnchorView(layout);
}
}
main.xml文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main_program_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFFFFF"
android:orientation="vertical" >
<TextView
android:id="@+id/now_playing_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:gravity="center"
android:text="@string/na_antenie"
android:textColor="#333333" />
</LinearLayout>
答案 0 :(得分:6)
您不能在服务中使用mediacontroller类。服务不包含GUI,因此您的服务无法识别findViewById。 而是创建一个实现mediaController的活动,然后创建您的服务并将其绑定到您的活动。因此,您的活动中的服务和控制器中都有mediaPlayer。
这是活动类的概述。
public class MusicPlayerActivity extends Activity implements MediaController.MediaPlayerControl{
//Do all the stuff
void initMusic(){
mMediaController = new MediaController(this,false);
//Note do not create any variable of mediaplayer
mMediaController.setMediaPlayer(this);
mMediaController.setAnchorView(findViewById(R.id.anchorText));
new Thread(new Runnable() {
@Override
public void run() {
startService(new Intent("PLAY_MUSIC"));
}
}).start();
MusicService.setPathOfSong("Provide the path");
}
}
这是服务类的概述。
public class MusicService extends Service implements MediaPlayer.OnPreparedListener {
private MediaPlayer mMediaPlayer;
private static String pathOfSong;
public int onStartCommand(Intent intent, int flags, int startId) {
mMediaPlayer=new MediaPlayer();
mMediaPlayer.setOnPreparedListener(this);
//Other stuff
}
public static void setPathOfSong(String path)
{
pathOfSong=path;
}
}
答案 1 :(得分:4)
我遇到了同样的问题而且我无法按照你的方式工作。
解决方案是绑定活动中的服务,然后您可以从活动中访问服务中运行的MediaPlayer。
请注意,要以这种方式运行,您的服务必须已定义所有必要的方法,如getCurrentPosition等。
在您的活动中添加绑定工具:
/******************************************************************
*
* Defines callbacks for service binding, passed to bindService()
*
* ************************************************************** */
private ServiceConnection mConnection = new ServiceConnection() {
@Override
public void onServiceConnected(ComponentName className,
IBinder service) {
// We've bound to LocalService, cast the IBinder and get LocalService instance
LocalBinder binder = (LocalBinder) service;
mService = binder.getService();
mBound = true;
}
@Override
public void onServiceDisconnected(ComponentName arg0) {
mBound = false;
}
};
然后你必须修改onStart()和onStop()方法来绑定/取消绑定服务。
@Override
protected void onStart() {
super.onStart();
// Bind to LocalService
Intent intent = new Intent(this, MusicService.class);
bindService(intent, mConnection, Context.BIND_AUTO_CREATE);
}
@Override
protected void onStop() {
super.onStop();
// Unbind from the service
if (mBound) {
unbindService(mConnection);
mBound = false;
}
}
我后来做的是创建以下方法
public void showMediaControllerHere(){
if (mBound){
mc = new MediaController(mpContext);
mc.setAnchorView(findViewById(R.id.anchorText));
mc.setMediaPlayer(mService);
mc.setEnabled(true);
mc.show(0);
}
}
@Override
public boolean onTouchEvent(MotionEvent event) {
//the MediaController will hide after 3 seconds - tap the screen to make it appear again
if (first){
if (mBound){
showMediaControllerHere();
first = false;
}
}
else {
if (mBound){
mc.show(0);
}
}
return false;
}
首先是一个布尔值,用于实现我们是否必须创建mediacontroller,我只在用户第一次触摸屏幕时创建。