码迷,mamicode.com
首页 > 移动开发 > 详细

Android通过意图使用内置的音频播放器

时间:2014-05-23 01:16:51      阅读:405      评论:0      收藏:0      [点我收藏+]

标签:android   音频   

如果实现一个音频文件的播放,那么在应用程序中提供播放音频文件功能的最简单的方式是利用内置的“Music(音乐)”应用程序的功能--即使用系统自带的或已安装好的音乐播放器来播放指定的音频文件。


本例比较简单,下面直接给出源代码:

布局文件activity_main:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:text="音乐播放器实例" />

    <Button
        android:id="@+id/button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/textView"
        android:text="播放音乐" />

</RelativeLayout>

代码文件MainActivity:

package com.mutimediademo3audio;

import java.io.File;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class MainActivity extends Activity implements OnClickListener {
	private Button button;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		button = (Button) findViewById(R.id.button);
		button.setOnClickListener(this);
	}

	@Override
	public void onClick(View v) {
		switch (v.getId()) {
		case R.id.button:
			/**
			 * 将通用android.content.Intent.ACTION_VIEW意图的数据设置为一个音频文件的URI,
			 * 并制定其MIME类型,这样Android就能挑选适当的应用程序进行播放。
			 */
			Intent intent = new Intent(android.content.Intent.ACTION_VIEW);
			File sdcard = Environment.getExternalStorageDirectory();
			File audioFile = new File(sdcard.getPath() + "/good.mp3");//此处需要在sd卡中放置一个文件名为good的mp3文件。
			intent.setDataAndType(Uri.fromFile(audioFile), "audio/mp3");
			startActivity(intent);
			break;

		default:
			break;
		}
	}

}

源代码:

点击下载源码


Android通过意图使用内置的音频播放器,布布扣,bubuko.com

Android通过意图使用内置的音频播放器

标签:android   音频   

原文地址:http://blog.csdn.net/u012440207/article/details/26465515

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!