预览加载中,请您耐心等待几秒...
1/7
2/7
3/7
4/7
5/7
6/7
7/7

在线预览结束,喜欢就下载吧,查找使用更方便

如果您无法下载资料,请参考说明:

1、部分资料下载需要金币,请确保您的账户上有足够的金币

2、已购买过的文档,再次下载不重复扣费

3、资料包下载后请先用软件解压,在使用对应软件打开

Android音乐播放MediaPlayerAndroid音乐播放MediaPlayer-电脑资料  当你坐公交无聊的时候,当你淹没在地铁中人潮中的时候,你是否想内心保持一份的安静呢,那么请带上耳机,打开你的音乐播放器,听一首老歌带你进入宁静的世界,音乐播放这个功能在智能手机出现之前,诺基亚时代,甚至追溯到最开始的大哥大的时候都是属于音频的范畴,Android音乐播放MediaPlayerAndroid音乐播放MediaPlayer。Android中播放音频不可避免的使用的一个类是Mediaplayer,视频调用也是这个类。扯远了,开始正题吧:  基础维护  首先这个时候来看看要实现的效果吧:  布局如下:    xmlns:tools="http://schemas.android.com/tools"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:orientation="vertical"  tools:context="com.example.googlemedia.MainActivity">    android:id="@+id/edit_musicPath"  android:layout_width="match_parent"  android:layout_height="wrap_content"  android:hint="输入你喜欢歌曲的路径"/>    android:layout_width="match_parent"  android:layout_height="wrap_content"  android:orientation="horizontal">    android:id="@+id/btn_Play"  android:layout_width="wrap_content"  android:layout_height="wrap_content"  android:onClick="playEvent"  android:text="播放"/>    android:id="@+id/btn_Pause"  android:layout_width="wrap_content"  android:layout_height="wrap_content"  android:onClick="pauseEvent"  android:text="暂停"/>    android:id="@+id/btn_Stop"  android:layout_width="wrap_content"  android:layout_height="wrap_content"  android:onClick="stopEvent"  android:text="停止"/>    android:id="@+id/btn_Replay"  android:layout_width="wrap_content"  android:layout_height="wrap_content"  android:onClick="replayEvent"  android:text="重播"/>      Demo完成  音频文件:  播放按钮事件:  public voidplayEvent(Viewview){  editText=(EditText)findViewById(R.i