真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么在Android中通過Service實(shí)現(xiàn)一個(gè)音樂播放器

本篇文章給大家分享的是有關(guān)怎么在Android中通過Service實(shí)現(xiàn)一個(gè)音樂播放器,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

網(wǎng)站設(shè)計(jì)、做網(wǎng)站服務(wù)團(tuán)隊(duì)是一支充滿著熱情的團(tuán)隊(duì),執(zhí)著、敏銳、追求更好,是創(chuàng)新互聯(lián)的標(biāo)準(zhǔn)與要求,同時(shí)竭誠為客戶提供服務(wù)是我們的理念。創(chuàng)新互聯(lián)把每個(gè)網(wǎng)站當(dāng)做一個(gè)產(chǎn)品來開發(fā),精雕細(xì)琢,追求一名工匠心中的細(xì)致,我們更用心!

這里將用到android的四大組件之一:Service

注意:Service是自大組件之一,需要注冊。

什么是服務(wù)?

1:“Service” 意思即“服務(wù)”的意思, 像 Windows 上面的服務(wù)一樣,服務(wù)是在后臺上運(yùn)行,承擔(dān)著靜悄悄的不為人所注意的工作。

2:Service運(yùn)行在后臺,它是不可見的、無界面的程序。

3:Service可以在很多場合的應(yīng)用中使用,比如播放多媒體的時(shí)候用戶啟動(dòng)了其他Activity,這個(gè)時(shí)候程序要在后臺繼續(xù)播放;比如檢測SD卡上文件的變化;再或者在后臺記錄用戶的地理信息位置的改變;或者啟動(dòng)一個(gè)服務(wù)來運(yùn)行并一直監(jiān)聽某種動(dòng)作等等。

下面是源碼:

MainActivity

/**
 * 這是一個(gè)Service生命周期及開啟服務(wù)的小例子
 * 實(shí)現(xiàn)播放音樂功能
 */
public class MainActivity extends AppCompatActivity {
 /**
  * 規(guī)定開始音樂、暫停音樂、結(jié)束音樂的標(biāo)志
  */
 public static final int PLAT_MUSIC=1;
 public static final int PAUSE_MUSIC=2;
 public static final int STOP_MUSIC=3;
 private MyBroadCastReceiver receiver;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  receiver=new MyBroadCastReceiver();
  IntentFilter filter=new IntentFilter();
  filter.addAction("com.complete");
  registerReceiver(receiver,filter);
 }
 public void onClick(View view){
  switch (view.getId()){
   //開始音樂
   case R.id.btn_startmusic:
    playingmusic(PLAT_MUSIC);
    break;
   //暫停
   case R.id.btn_pausemusic:
    playingmusic(PAUSE_MUSIC);
    break;
   //停止
   case R.id.btn_stopmusic:
    playingmusic(STOP_MUSIC);
    break;
  }
 }
 private void playingmusic(int type) {
  //啟動(dòng)服務(wù),播放音樂
  Intent intent=new Intent(this,PlayingMusicServices.class);
  intent.putExtra("type",type);
  startService(intent);
 }
 @Override
 protected void onDestroy() {
  super.onDestroy();
  unregisterReceiver(receiver);
 }
}

MyBroadCastReceiver類(廣播接收者):

/**
 * 這是一個(gè)Service生命周期及開啟服務(wù)的小例子
 * 實(shí)現(xiàn)播放音樂功能
 */
public class MainActivity extends AppCompatActivity {
 /**
  * 規(guī)定開始音樂、暫停音樂、結(jié)束音樂的標(biāo)志
  */
 public static final int PLAT_MUSIC=1;
 public static final int PAUSE_MUSIC=2;
 public static final int STOP_MUSIC=3;
 private MyBroadCastReceiver receiver;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);

  receiver=new MyBroadCastReceiver();
  IntentFilter filter=new IntentFilter();
  filter.addAction("com.complete");
  registerReceiver(receiver,filter);
 }
 public void onClick(View view){
  switch (view.getId()){
   //開始音樂
   case R.id.btn_startmusic:
    playingmusic(PLAT_MUSIC);
    break;
   //暫停
   case R.id.btn_pausemusic:
    playingmusic(PAUSE_MUSIC);
    break;
   //停止
   case R.id.btn_stopmusic:
    playingmusic(STOP_MUSIC);
    break;
  }
 }
 private void playingmusic(int type) {
  //啟動(dòng)服務(wù),播放音樂
  Intent intent=new Intent(this,PlayingMusicServices.class);
  intent.putExtra("type",type);
  startService(intent);
 }
 @Override
 protected void onDestroy() {
  super.onDestroy();
  unregisterReceiver(receiver);
 }
}

PlayingMusicServices類:

/**
 * 這是一個(gè)Start Service
 */
public class PlayingMusicServices extends Service {
 //用于播放音樂等媒體資源
 private MediaPlayer mediaPlayer;
 //標(biāo)志判斷播放歌曲是否是停止之后重新播放,還是繼續(xù)播放
 private boolean isStop=true;
 /**
  * onBind,返回一個(gè)IBinder,可以與Activity交互
  * 這是Bind Service的生命周期方法
  * @param intent
  * @return
  */
 @Nullable
 @Override
 public IBinder onBind(Intent intent) {
  return null;
 }
 //在此方法中服務(wù)被創(chuàng)建
 @Override
 public void onCreate() {
  super.onCreate();
  if (mediaPlayer==null){
   mediaPlayer=new MediaPlayer();

   //為播放器添加播放完成時(shí)的監(jiān)聽器
   mediaPlayer.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
    @Override
    public void onCompletion(MediaPlayer mp) {
     //發(fā)送廣播到MainActivity
     Intent intent=new Intent();
     intent.setAction("com.complete");
     sendBroadcast(intent);
    }
   });
  }
 }

/**
  * 在此方法中,可以執(zhí)行相關(guān)邏輯,如耗時(shí)操作
  * @param intent :由Activity傳遞給service的信息,存在intent中
  * @param flags :規(guī)定的額外信息
  * @param startId :開啟服務(wù)時(shí),如果有規(guī)定id,則傳入startid
  * @return 返回值規(guī)定此startservice是哪種類型,粘性的還是非粘性的
  *   START_STICKY:粘性的,遇到異常停止后重新啟動(dòng),并且intent=null
  *   START_NOT_STICKY:非粘性,遇到異常停止不會(huì)重啟
  *   START_REDELIVER_INTENT:粘性的,重新啟動(dòng),并且將Context傳遞的信息intent傳遞
  * 此方法是唯一的可以執(zhí)行很多次的方法
  */
 @Override
 public int onStartCommand(Intent intent, int flags, int startId) {
  switch (intent.getIntExtra("type",-1)){
   case MainActivity.PLAT_MUSIC:
    if (isStop){
     //重置mediaplayer
     mediaPlayer.reset();
     //將需要播放的資源與之綁定
     mediaPlayer=MediaPlayer.create(this,R.raw.birds);
     //開始播放
     mediaPlayer.start();
     //是否循環(huán)播放
     mediaPlayer.setLooping(false);
     isStop=false;
    }else if (!isStop&&mediaPlayer.isPlaying()&&mediaPlayer!=null){
     mediaPlayer.start();
    }
    break;
   case MainActivity.PAUSE_MUSIC:
    //播放器不為空,并且正在播放
    if (mediaPlayer!=null&&mediaPlayer.isPlaying()){
     mediaPlayer.pause();
    }
    break;
   case MainActivity.STOP_MUSIC:
    if (mediaPlayer!=null){
     //停止之后要開始播放音樂
     mediaPlayer.stop();
     isStop=true;
    }
    break;
  }
  return START_NOT_STICKY;
 }

 @Override
 public void onDestroy() {
  super.onDestroy();
 }
}

最后不要忘記在清單配置文件中注冊服務(wù):

 123

在res下新建一個(gè)raw的文件夾,將事先下載好的MP3文件放入中,這里的歌曲是我自己下載的是birds.mp3 。

怎么在Android中通過Service實(shí)現(xiàn)一個(gè)音樂播放器

Android是什么

Android是一種基于Linux內(nèi)核的自由及開放源代碼的操作系統(tǒng),主要使用于移動(dòng)設(shè)備,如智能手機(jī)和平板電腦,由美國Google公司和開放手機(jī)聯(lián)盟領(lǐng)導(dǎo)及開發(fā)。

以上就是怎么在Android中通過Service實(shí)現(xiàn)一個(gè)音樂播放器,小編相信有部分知識點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


分享題目:怎么在Android中通過Service實(shí)現(xiàn)一個(gè)音樂播放器
轉(zhuǎn)載注明:http://weahome.cn/article/ppjics.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部