android 音樂播放控制元件
阿新 • • 發佈:2019-02-08
之前看到網頁版的網易音樂播放控制元件, 正好在一個開源學習專案中需要簡單的音樂播放功能。所以想是不是可以封裝一個音樂播放控制元件,提供一個類似網易播放控制元件的預設介面,而且提供更換介面的功能。使用時,只需要去設計介面, 而不用再去管音樂播放的邏輯,所以就實現了一個簡單的音樂播放控制元件。
1.使用預設的介面
(1) 在你的佈局中加入 MiniMusicView
<com.hrb.library.MiniMusicView
android:id="@+id/mmv_music"
app:isLoadLayout="true"
android:layout_width="match_parent"
android:layout_height="match_parent" />
(2) 設定音樂地址並播放音樂
mMusicView = (MiniMusicView) findViewById(R.id.mmv_music);
mMusicView.setTitleText("music name");
mMusicView.setAuthor("singer name");
mMusicView.startPlayMusic("music url");
// Or through the new way to create view object
// mMusicView = new MiniMusicView(this);
// mMusicView.initDefaultView();
// mMusicView.setTitleText("music name");
// mMusicView.startPlayMusic("music url");
(3) 停止音樂播放
@Override
protected void onDestroy() {
mMusicView.stopPlayMusic();
super.onDestroy();
}
效果圖如下:
2.使用自定義佈局
(1) 在你的佈局中加入 MiniMusicView
<com .hrb.library.MiniMusicView
android:id="@+id/mmv_music"
android:layout_width="match_parent"
android:layout_height="match_parent" />
(2) 設定自定義佈局,設定音樂地址,播放音樂
mMusicView = (MiniMusicView) findViewById(R.id.mmv_music);
View view = View.inflate(CustomActivity.this, R.layout.layout_custom_music, null);
TextView title = (TextView) view.findViewById(R.id.tv_music_play_title);
title.setText("music name");
mMusicView.addView(view);
mMusicView.startPlayMusic("music url");
// Or through the new way to create view object
// mMusicView = new MiniMusicView(this);
// mMusicView.addView(view);
// mMusicView.startPlayMusic("music url");
效果圖如下:
(3) MiniMusicView 還提供音樂狀態的回撥監聽介面
mMusicView.setOnMusicStateListener(new MiniMusicView.OnMusicStateListener() {
@Override
public void onPrepared(int duration) {
Log.i(TAG, "start prepare play music");
}
@Override
public void onError() {
Log.i(TAG, "start play music error");
}
@Override
public void onInfo(int what, int extra) {
Log.i(TAG, "start play_mini_music music info");
}
@Override
public void onMusicPlayComplete() {
Log.i(TAG, "start play music completed");
}
@Override
public void onSeekComplete() {
Log.i(TAG, "seek play music completed");
}
@Override
public void onProgressUpdate(int duration, int currentPos) {
Log.i(TAG, "play music progress update");
}
@Override
public void onHeadsetPullOut() {
Log.i(TAG, "headset pull out");
}
});
你可以在相應的監聽中去完成需要的行為, 例如要實現當耳機拔出,實現音樂播放停止, 可以在onHeadsetPullOut()介面中呼叫mMusicView.pausePlayMusic() 暫停音樂播放。
另外,MiniMusicView如何在工程中使用和原始碼可以從 這裡 獲取,大家可以根據需要進行修改, 如果使用中有bug請留言,不勝感激.