av一区二区在线观看_亚洲男人的天堂网站_日韩亚洲视频_在线成人免费_欧美日韩精品免费观看视频_久草视

您的位置:首頁技術(shù)文章
文章詳情頁

Android實現(xiàn)簡易的音樂播放器

瀏覽:4日期:2022-09-18 17:20:24

本文實例為大家分享了Android實現(xiàn)簡易的音樂播放器,供大家參考,具體內(nèi)容如下

功能介紹

本次實驗實現(xiàn)的是使用Andriod Studio開發(fā)一個簡易的音樂播放器,所包含的功能有音樂的播放、暫停、上一曲、下一曲、音樂播放的進度以及手動拖動來控制音樂的播放進度。

實現(xiàn)過程

導(dǎo)入項目所需的音樂文件、圖標(biāo)、背景等

1.創(chuàng)建一個raw文件夾,將音樂文件導(dǎo)入到這個文件夾中,方便我們在項目中使用

2.在drawable中導(dǎo)入所需的圖片、圖標(biāo)

設(shè)計UI界面

1.設(shè)計5個button控件,分別對應(yīng)上一曲,下一曲,暫停,播放,退出

2.設(shè)計3個TextView,分別對應(yīng)歌曲的介紹信息、歌曲的進度(歌曲的總時間和歌曲當(dāng)前播放的時間)、歌曲的名字

service服務(wù)的編寫創(chuàng)建一個MusicService對象繼承Service

MusicService所需要的成員變量

MyReceiver serviceReceiver;Thread processThread;AssetManager am;//是附件管理器,用于根據(jù)文件名找到文件所在并打開文件String[] musics = new String[]{'legendsneverdie.mp3', 'promise.mp3','beautiful.mp3'};//默認(rèn)顯示的歌曲信息MediaPlayer mPlayer;// 當(dāng)前的狀態(tài),0x11代表沒有播放;0x12代表正在播放;0x13代表暫停int status = 0x11;// 記錄當(dāng)前正在播放的音樂int current = 0;

實現(xiàn)循環(huán)播放

public void onCreate() {super.onCreate();am = getAssets();// 創(chuàng)建BroadcastReceiverserviceReceiver = new MyReceiver();// 創(chuàng)建IntentFilterIntentFilter filter = new IntentFilter();filter.addAction(MainActivity.CTL_ACTION);registerReceiver(serviceReceiver, filter);// 創(chuàng)建MediaPlayermPlayer = new MediaPlayer();// 為MediaPlayer播放完成事件綁定監(jiān)聽器mPlayer.setOnCompletionListener(new OnCompletionListener(){ @Override public void onCompletion(MediaPlayer mp) {Log.d('musicService', '播放完成');current++;if (current >= 3) { current = 0;}// 準(zhǔn)備并播放音樂prepareAndPlay(musics[current]);//發(fā)送廣播通知Activity更改文本框Intent sendIntent = new Intent(MainActivity.UPDATE_ACTION);sendIntent.putExtra('current', current);sendIntent.putExtra('currentTime', mPlayer.getCurrentPosition());sendIntent.putExtra('totalTime', mPlayer.getDuration());// 發(fā)送廣播,將被Activity組件中的BroadcastReceiver接收到sendBroadcast(sendIntent); }}); private void prepareAndPlay(String music) {try { // 打開指定音樂文件 AssetFileDescriptor afd = am.openFd(music); mPlayer.reset(); // 使用MediaPlayer加載指定的聲音文件。 mPlayer.setDataSource(afd.getFileDescriptor(), afd.getStartOffset(), afd.getLength()); // 準(zhǔn)備聲音 mPlayer.prepare(); // 播放 mPlayer.start();} catch (IOException e) { e.printStackTrace();} }

實現(xiàn)刷新進度條

processThread = new Thread(new Runnable() {@Overridepublic void run() { while (true) {if (status == 0x12) { try {Thread.sleep(1000);Intent sendIntent = new Intent(MainActivity.UPDATE_ACTION);sendIntent.putExtra('current', current);sendIntent.putExtra('currentTime', mPlayer.getCurrentPosition());sendIntent.putExtra('totalTime', mPlayer.getDuration());// 發(fā)送廣播,將被Activity組件中的BroadcastReceiver接收到sendBroadcast(sendIntent); } catch (InterruptedException e) {e.printStackTrace(); }} }} }); processThread.start();}

廣播通信接收器的實現(xiàn)(用于實現(xiàn)和activity的通信)

public class MyReceiver extends BroadcastReceiver { @Override public void onReceive(final Context context, Intent intent) {int control = intent.getIntExtra('control', -1);Log.d('musicReceiver', '收到廣播, control=' + control);switch (control) { // 播放或暫停 case 1:// 原來處于沒有播放狀態(tài)if (status == 0x11) { // 準(zhǔn)備并播放音樂 prepareAndPlay(musics[current]); status = 0x12;}// 原來處于播放狀態(tài)else if (status == 0x12) { // 暫停 mPlayer.pause(); // 改變?yōu)闀和顟B(tài) status = 0x13;}// 原來處于暫停狀態(tài)else if (status == 0x13) { // 播放 mPlayer.start(); // 改變狀態(tài) status = 0x12;}break;// 下一首 case 2:if (status == 0x12 || status == 0x13) { mPlayer.stop(); if (current + 1 >= musics.length) {current = 0; } else {current++; } prepareAndPlay(musics[current]); status = 0x12; break;}// 上一首 case 3:if (status == 0x12 || status == 0x13) { mPlayer.stop(); if (current - 1 < 0) {current = musics.length - 1; } else {current--; } prepareAndPlay(musics[current]); status = 0x12;}}// 廣播通知Activity更改圖標(biāo)、文本框Intent sendIntent = new Intent(MainActivity.UPDATE_ACTION);sendIntent.putExtra('update', status);sendIntent.putExtra('current', current);// 發(fā)送廣播,將被Activity組件中的BroadcastReceiver接收到sendBroadcast(sendIntent); }}

activity的實現(xiàn)

初始化和動態(tài)綁定接收器

// 獲取界面中顯示歌曲標(biāo)題、作者文本框TextView title, author, currentTime, totalTime;// 播放/暫停、停止按鈕ImageButton play;ImageView lastMusic, nextMusic;// 進度條ProgressBar progressBar;ActivityReceiver activityReceiver;public static final String CTL_ACTION ='org.xr.action.CTL_ACTION';public static final String UPDATE_ACTION ='org.xr.action.UPDATE_ACTION';// 定義音樂的播放狀態(tài),0x11代表沒有播放;0x12代表正在播放;0x13代表暫停int status = 0x11;String[] titleStrs = new String[]{'Legends Never Die', '約定', '美麗新世界'};String[] authorStrs = new String[]{'英雄聯(lián)盟', '周蕙', '伍佰'};@Overridepublic void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); // 獲取程序界面界面中的兩個按鈕 play = (ImageButton) this.findViewById(R.id.play); lastMusic = this.findViewById(R.id.lastMusic); nextMusic = this.findViewById(R.id.nextMusic); title = (TextView) findViewById(R.id.title); author = (TextView) findViewById(R.id.author); currentTime = findViewById(R.id.currentTime); totalTime = findViewById(R.id.totalTime); progressBar = findViewById(R.id.progressBar); // 為兩個按鈕的單擊事件添加監(jiān)聽器 play.setOnClickListener(this); lastMusic.setOnClickListener(this); nextMusic.setOnClickListener(this); activityReceiver = new ActivityReceiver(); // 創(chuàng)建IntentFilter IntentFilter filter = new IntentFilter(); // 指定BroadcastReceiver監(jiān)聽的Action filter.addAction(UPDATE_ACTION); // 注冊BroadcastReceiver registerReceiver(activityReceiver, filter); Intent intent = new Intent(this, MusicService.class); // 啟動后臺Service startService(intent);}

設(shè)置activity的廣播接收器(接收service發(fā)送過來的廣播)

public void onReceive(Context context, Intent intent) { // 獲取Intent中的update消息,update代表播放狀態(tài) int update = intent.getIntExtra('update', -1); // 獲取Intent中的current消息,current代表當(dāng)前正在播放的歌曲 int current = intent.getIntExtra('current', -1); int totalPosition = intent.getIntExtra('totalTime', -1); int currentPosition = intent.getIntExtra('currentTime', -1); Log.d('activityReceiver', '收到廣播'); Log.d('activityReceiver', 'current:' + current + ' totalPosition:' + totalPosition + ' currentPosition:' + currentPosition + ' update:' + update); if (current >= 0) {title.setText(titleStrs[current]);author.setText(authorStrs[current]); } if (totalPosition >= 0) {SimpleDateFormat simpleDateFormat = new SimpleDateFormat('mm:ss', Locale.CHINA);Date date = new Date(totalPosition);String formatTime = simpleDateFormat.format(date);totalTime.setText(formatTime); } if (currentPosition >= 0) {double process = ((double)currentPosition / totalPosition)*100;Log.d('activityReceiver', '當(dāng)前進度:' + (double)currentPosition/totalPosition);SimpleDateFormat simpleDateFormat = new SimpleDateFormat('mm:ss', Locale.CHINA);Date date = new Date(currentPosition);String formatTime = simpleDateFormat.format(date);progressBar.setProgress((int) process);currentTime.setText(formatTime); } switch (update) {case 0x11: play.setImageResource(R.drawable.play); status = 0x11; break;// 控制系統(tǒng)進入播放狀態(tài)case 0x12: // 播放狀態(tài)下設(shè)置使用暫停圖標(biāo) play.setImageResource(R.drawable.pause); // 設(shè)置當(dāng)前狀態(tài) status = 0x12; break;// 控制系統(tǒng)進入暫停狀態(tài)case 0x13: // 暫停狀態(tài)下設(shè)置使用播放圖標(biāo) play.setImageResource(R.drawable.play); // 設(shè)置當(dāng)前狀態(tài) status = 0x13; break; }}

實現(xiàn)圖標(biāo)的點擊功能

// 創(chuàng)建Intent Intent intent = new Intent('org.xr.action.CTL_ACTION'); switch (source.getId()) {// 按下播放/暫停按鈕case R.id.play: intent.putExtra('control', 1); break;case R.id.lastMusic: intent.putExtra('control', 3);case R.id.nextMusic: intent.putExtra('control', 2); } // 發(fā)送廣播,將被Service組件中的BroadcastReceiver接收到 sendBroadcast(intent);}

結(jié)果展示

Android實現(xiàn)簡易的音樂播放器

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Android
相關(guān)文章:
主站蜘蛛池模板: 三级av片| 久久动态图 | 国产毛片毛片 | 在线视频成人 | 成人午夜激情 | 神马午夜我不卡 | 日韩精品久久久久久久酒店 | 国产精品二区一区二区aⅴ污介绍 | 精品国产一二三区 | 国产成人综合在线 | 国产a精品 | 欧美亚洲激情 | 久久精品一区二区三区四区五区 | 午夜精品久久久久 | 天天草天天干 | 欧美 日韩 国产 在线 | 国产精品自拍小视频 | 午夜视频在线免费观看 | 中文字幕在线观看一区二区三区 | 色综合天天综合网国产成人网 | 亚洲综合伊人 | 国产视频一 | 日本毛片在线观看 | 免费高清av| 久久久久国产视频 | 在线免费观看黄色片 | 天天操夜夜爽 | 亚洲精品影院 | 色综合五月天 | 色在线视频 | www.日日日 | 91福利在线视频 | 大尺度做爰床戏呻吟舒畅 | 日韩黄色一级 | 人人超碰人人 | 蜜桃av一区二区三区 | 欧美日韩在线精品 | 精品小视频 | 欧美专区在线 | 久久久精 | 成人黄色免费网站 |