您好,登錄后才能下訂單哦!
這篇文章主要介紹了Android如何實現音樂播放器,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
可以對音樂文件實現播放、暫停、重播和停止功能。退出應用和回到桌面時音樂停止。
主界面:
主界面配置文件mian.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/container" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context="com.example.musicplay.MainActivity" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/filename" /> <EditText android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="0.00" android:background="#B0C4DE" android:text="Payphone.mp3" android:id="@+id/filename" /> <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" > <Button android:id="@+id/playbutton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="mediaplay" android:text="@string/playbutton" /> <Button android:id="@+id/pausebutton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="mediaplay" android:text="@string/pausebutton" /> <Button android:id="@+id/resetbutton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="mediaplay" android:text="@string/resetbutton" /> <Button android:id="@+id/stopbutton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="mediaplay" android:text="@string/stopbutton" /> </LinearLayout> </LinearLayout>
主界面的Activity
MainActivity.java:
package com.example.musicplay; import java.io.File; import android.app.Activity; import android.content.Context; import android.media.MediaPlayer; import android.media.MediaPlayer.OnPreparedListener; import android.os.Bundle; import android.os.Environment; import android.telephony.PhoneStateListener; import android.telephony.TelephonyManager; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.Toast; public class MainActivity extends Activity { private EditText nameText; private String path; private int position; private MediaPlayer mediaplayer; private boolean pause; protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); nameText=(EditText) this.findViewById(R.id.filename); mediaplayer=new MediaPlayer(); } //以下方法會造成只要應用在后臺音樂都會停止播放 @Override //當應用不在前臺時,停止播放 protected void onPause() { if(mediaplayer.isPlaying()){ position=mediaplayer.getCurrentPosition(); mediaplayer.stop(); } super.onPause(); } @Override protected void onResume() { if(position>0&&path!=null){ play(); mediaplayer.seekTo(position); position=0; } super.onResume(); } @Override protected void onDestroy() { mediaplayer.release(); mediaplayer=null; super.onDestroy(); } public void mediaplay(View v){ switch (v.getId()) { case R.id.playbutton: String filename=nameText.getText().toString(); //Environment.getExternalStorageDirectory()檢查外部存儲設備的可用性 File audio=new File(Environment.getExternalStorageDirectory(),filename); if(audio.exists()){ //獲取SDCard目錄,2.2的時候為:/mnt/sdcart 2.1的時候為:/sdcard,所以使用靜態方法得到路徑會好一點。 path=audio.getAbsolutePath(); play(); } else{ path=null; Toast.makeText(getApplicationContext(), R.string.error, 1).show(); } break; case R.id.pausebutton: if(mediaplayer.isPlaying()){ mediaplayer.pause(); pause=true; ((Button)v).setText(R.string.continues); }else{ if(pause){ mediaplayer.start(); pause=false; ((Button)v).setText(R.string.pausebutton); } } break; case R.id.resetbutton: if(mediaplayer.isPlaying()){ mediaplayer.seekTo(0);//從開始位置播放 }else{ if(path!=null){ play(); } } break; case R.id.stopbutton: if(mediaplayer.isPlaying()){ mediaplayer.stop(); } break; default: break; } } private void play() { try { mediaplayer.reset();//把各項參數恢復到初始化狀態 mediaplayer.setDataSource(path); mediaplayer.prepare();//進行緩沖 //設置緩沖監聽器 mediaplayer.setOnPreparedListener(new OnPreparedListener() { //緩沖完畢后調用onPrepared方法 public void onPrepared(MediaPlayer mp) { // 里面寫緩沖完要干的事 mediaplayer.start(); } }); } catch (Exception e) { e.printStackTrace(); } } }
實現了簡單的SD卡中音樂的播放。
感謝你能夠認真閱讀完這篇文章,希望小編分享的“Android如何實現音樂播放器”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。