Android 中級教程之------Android MediaPlayer播放mp3

來源:互聯網
上載者:User

 MediaPlayer在底層是基於OpenCore(PacketVideo)的庫實現的,為了構建一個MediaPlayer程式,上層還包含了進程間通訊等內容,這種進程間通訊的基礎是Android基本庫中的Binder機制。
而我們今天的例子只是利用MediaPlayer來播放res/raw檔案夾中一首非常動聽的英文哥love fool.mp3.程式有三個ImageButton按鈕,播放,停止,和暫停!三個按鈕的功能我就不用多說.下面我將Step By Step教你如何完成本Demo的實現.
Step 1 :建立一個Android工程,命名為MediaPlayerDemo.
Step 2 :準備素材,在res下建一個raw檔案夾,將foollove.mp3匯入,將play.png,pause.png,及stop.png匯入res/drawable檔案夾下.
Step 3: 設計UI布局,在main.xml裡放入三個ImageButton(這裡可以用AbsoluteLayout,或者RelativeLayout實現,我用後者).代碼如下

[html] 
<SPAN style="COLOR: #cc6600; FONT-SIZE: 12px">    <?xml version="1.0" encoding="utf-8"?> 
    <RelativeLayout 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:background="@drawable/white" 
    xmlns:android="http://schemas.android.com/apk/res/android " 
    > 
    <TextView 
    android:id="@+id/myTextView1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="@string/hello" 
    android:layout_alignParentTop="true" 
    android:layout_alignParentLeft="true" 
    > 
    </TextView> 
    <ImageButton 
    android:id="@+id/myButton1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:src="@drawable/play" 
    android:layout_below="@+id/myTextView1" 
    > 
    </ImageButton> 
    <ImageButton 
    android:id="@+id/myButton3" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:src="@drawable/pause" 
    android:layout_alignTop="@+id/myButton1" 
    android:layout_toRightOf="@+id/myButton1" 
    > 
    </ImageButton> 
    <ImageButton 
    android:id="@+id/myButton2" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:src="@drawable/stop" 
    android:layout_alignTop="@+id/myButton1" 
    android:layout_toRightOf="@+id/myButton3" 
    > 
    </ImageButton> 
    </RelativeLayout> 
</SPAN> 

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/white"
    xmlns:android="http://schemas.android.com/apk/res/android "
    >
    <TextView
    android:id="@+id/myTextView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello"
    android:layout_alignParentTop="true"
    android:layout_alignParentLeft="true"
    >
    </TextView>
    <ImageButton
    android:id="@+id/myButton1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/play"
    android:layout_below="@+id/myTextView1"
    >
    </ImageButton>
    <ImageButton
    android:id="@+id/myButton3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/pause"
    android:layout_alignTop="@+id/myButton1"
    android:layout_toRightOf="@+id/myButton1"
    >
    </ImageButton>
    <ImageButton
    android:id="@+id/myButton2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/stop"
    android:layout_alignTop="@+id/myButton1"
    android:layout_toRightOf="@+id/myButton3"
    >
    </ImageButton>
    </RelativeLayout>

 


Step 4 :主控製程序MediaPlayerDemo.java的實現,代碼如下:

[java] view plaincopyprint?
<SPAN style="COLOR: #cc6600; FONT-SIZE: 12px">package com.android.test; 
import android.app.Activity; 
import android.media.MediaPlayer; 
import android.os.Bundle; 
import android.view.View; 
import android.widget.ImageButton; 
import android.widget.TextView; 
public class MediaPlayerDemo extends Activity { 
private ImageButton mb1,mb2,mb3; 
private TextView tv; 
private MediaPlayer mp; 
//聲明一個變數判斷是否為暫停,預設為false  
private boolean isPaused = false; 
public void onCreate(Bundle savedInstanceState) { 
super.onCreate(savedInstanceState); 
setContentView(R.layout.main); 
//通過findViewById找到資源  
mb1 = (ImageButton)findViewById(R.id.myButton1); 
mb2 = (ImageButton)findViewById(R.id.myButton2); 
mb3 = (ImageButton)findViewById(R.id.myButton3); 
tv = (TextView)findViewById(R.id.myTextView1); 
//建立MediaPlayer對象,將raw檔案夾下的lovefool.mp3  
mp = MediaPlayer.create(this,R.raw.lovefool); 
//增加播放音樂按鈕的事件  
mb1.setOnClickListener(new ImageButton.OnClickListener(){ 
@Override 
public void onClick(View v) { 
try { 
if(mp != null) 

mp.stop(); 

mp.prepare(); 
mp.start(); 
tv.setText("音樂播放中..."); 
} catch (Exception e) { 
tv.setText("播放發生異常..."); 
e.printStackTrace(); 


}); 
mb2.setOnClickListener(new ImageButton.OnClickListener(){ 
@Override 
public void onClick(View v) { 
try { 
if(mp !=null) 

mp.stop(); 
tv.setText("音樂停止播放..."); 

} catch (Exception e) { 
tv.setText("音樂停止發生異常..."); 
e.printStackTrace(); 


}); 
mb3.setOnClickListener(new ImageButton.OnClickListener(){ 
@Override 
public void onClick(View v) { 
try { 
if(mp !=null) 

if(isPaused==false) 

mp.pause(); 
isPaused=true; 
tv.setText("停止播放!"); 

else if(isPaused==true) 

mp.start(); 
isPaused = false; 
tv.setText("開始播發!"); 


} catch (Exception e) { 
tv.setText("發生異常..."); 
e.printStackTrace(); 


}); 
/* 當MediaPlayer.OnCompletionLister會啟動並執行Listener */ 
mp.setOnCompletionListener( 
new MediaPlayer.OnCompletionListener() 

// @Override  
/*覆蓋檔案播出完畢事件*/ 
public void onCompletion(MediaPlayer arg0) 

try 

/*解除資源與MediaPlayer的賦值關係
* 讓資源可以為其它程式利用*/ 
mp.release(); 
/*改變TextView為播放結束*/ 
tv.setText("音樂播髮結束!"); 

catch (Exception e) 

tv.setText(e.toString()); 
e.printStackTrace(); 


}); 
/* 當MediaPlayer.OnErrorListener會啟動並執行Listener */ 
mp.setOnErrorListener(new MediaPlayer.OnErrorListener() 

@Override 
/*覆蓋錯誤處理事件*/ 
public boolean onError(MediaPlayer arg0, int arg1, int arg2) 

// TODO Auto-generated method stub  
try 

/*發生錯誤時也解除資源與MediaPlayer的賦值*/ 
mp.release(); 
tv.setText("播放發生異常!"); 

catch (Exception e) 

tv.setText(e.toString()); 
e.printStackTrace(); 

return false; 

}); 


</SPAN> 

package com.android.test;
import android.app.Activity;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageButton;
import android.widget.TextView;
public class MediaPlayerDemo extends Activity {
private ImageButton mb1,mb2,mb3;
private TextView tv;
private MediaPlayer mp;
//聲明一個變數判斷是否為暫停,預設為false
private boolean isPaused = false;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
//通過findViewById找到資源
mb1 = (ImageButton)findViewById(R.id.myButton1);
mb2 = (ImageButton)findViewById(R.id.myButton2);
mb3 = (ImageButton)findViewById(R.id.myButton3);
tv = (TextView)findViewById(R.id.myTextView1);
//建立MediaPlayer對象,將raw檔案夾下的lovefool.mp3
mp = MediaPlayer.create(this,R.raw.lovefool);
//增加播放音樂按鈕的事件
mb1.setOnClickListener(new ImageButton.OnClickListener(){
@Override
public void onClick(View v) {
try {
if(mp != null)
{
mp.stop();
}
mp.prepare();
mp.start();
tv.setText("音樂播放中...");
} catch (Exception e) {
tv.setText("播放發生異常...");
e.printStackTrace();
}
}
});
mb2.setOnClickListener(new ImageButton.OnClickListener(){
@Override
public void onClick(View v) {
try {
if(mp !=null)
{
mp.stop();
tv.setText("音樂停止播放...");
}
} catch (Exception e) {
tv.setText("音樂停止發生異常...");
e.printStackTrace();
}
}
});
mb3.setOnClickListener(new ImageButton.OnClickListener(){
@Override
public void onClick(View v) {
try {
if(mp !=null)
{
if(isPaused==false)
{
mp.pause();
isPaused=true;
tv.setText("停止播放!");
}
else if(isPaused==true)
{
mp.start();
isPaused = false;
tv.setText("開始播發!");
}
}
} catch (Exception e) {
tv.setText("發生異常...");
e.printStackTrace();
}
}
});
/* 當MediaPlayer.OnCompletionLister會啟動並執行Listener */
mp.setOnCompletionListener(
new MediaPlayer.OnCompletionListener()
{
// @Override
/*覆蓋檔案播出完畢事件*/
public void onCompletion(MediaPlayer arg0)
{
try
{
/*解除資源與MediaPlayer的賦值關係
* 讓資源可以為其它程式利用*/
mp.release();
/*改變TextView為播放結束*/
tv.setText("音樂播髮結束!");
}
catch (Exception e)
{
tv.setText(e.toString());
e.printStackTrace();
}
}
});
/* 當MediaPlayer.OnErrorListener會啟動並執行Listener */
mp.setOnErrorListener(new MediaPlayer.OnErrorListener()
{
@Override
/*覆蓋錯誤處理事件*/
public boolean onError(MediaPlayer arg0, int arg1, int arg2)
{
// TODO Auto-generated method stub
try
{
/*發生錯誤時也解除資源與MediaPlayer的賦值*/
mp.release();
tv.setText("播放發生異常!");
}
catch (Exception e)
{
tv.setText(e.toString());
e.printStackTrace();
}
return false;
}
});
}
}

 

 


Step 5: 運行效果如下,一首動聽的love fool在播放...享受中...

 

擴散學習:
如果我們想播放手機卡裡的音樂,或者URL下載流媒體來播放,示意程式如下:

[java] 
<SPAN style="COLOR: #cc6600; FONT-SIZE: 12px">MediaPlayer mp = new MediaPlayer(); 
mp.setDataSource(String URL/FILE_PATH); 
mp.prepare(); 
mp.start(); </SPAN> 

MediaPlayer mp = new MediaPlayer();
mp.setDataSource(String URL/FILE_PATH);
mp.prepare();
mp.start();

 

 


以上程式主要是通過MediaPlayer.setDataSource() 的方法,將URL或檔案路徑以字串的方式傳入.使用setDataSource ()方法時,要注意以下三點:
1.構建完成的MediaPlayer 必須實現Null 對像的檢查.
2.必須實現接收IllegalArgumentException 與IOException 等異常,在很多情況下,你所用的檔案當下並不存在.
3.若使用URL 來播放線上媒體檔案,該檔案應該要能支援pragressive 下載

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.