android 播放MP3執行個體

來源:互聯網
上載者:User

在android中播放mp3非常簡單,也是項目中經常使用的,比如說要做項目的背景音樂,應用中某些功能的提示音等的。應用非常廣泛,下面提供一個簡單的使用執行個體:

layout檔案的配置:

<?xml version="1.0" encoding="utf-8"?><LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android"  android:layout_width="wrap_content"  android:orientation="vertical"  android:layout_height="wrap_content">    <Button android:text="播放" android:id="@+id/btnStart"android:layout_width="fill_parent" android:layout_height="wrap_content"></Button><Button android:text="停止" android:id="@+id/btnStop"android:layout_width="fill_parent" android:layout_height="wrap_content"></Button></LinearLayout>

java實現檔案:

/** *  */package com.demo.media;import android.app.Activity;import android.media.MediaPlayer;import android.os.Bundle;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;import com.demo.HelloWorld.R;/** * @author xsl  *  vaiyanzi@gmail.com * 實現MP3播放功能 */public class mediademo extends Activity {private Button btnStart,btnStop;private static MediaPlayer mediaPlayer=null;@Overridepublic void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.media);btnStart = (Button) this.findViewById(R.id.btnStart);btnStart.setOnClickListener(new ButtonListener());btnStop = (Button) this.findViewById(R.id.btnStop);btnStop.setOnClickListener(new ButtonListener());}class ButtonListener implements OnClickListener{public void onClick(View v) {switch(v.getId()){case R.id.btnStart:if(mediaPlayer==null){//建立播放執行個體mediaPlayer=MediaPlayer.create(mediademo.this, R.raw.tishiyin);}try {//設定是否迴圈播放mediaPlayer.setLooping(true);//設定播放起始點mediaPlayer.seekTo(0);//開始播放mediaPlayer.start();} catch (IllegalStateException e) {e.printStackTrace();} catch (Exception e) {e.printStackTrace();}break;case R.id.btnStop:if(mediaPlayer!=null){//停止播放mediaPlayer.stop();//釋放資源mediaPlayer.release();mediaPlayer=null;}break;}}}}

效果

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.