自定义音乐播放进度条

[前提]

* android 自身也提供了该接口 似乎是:MediaController   发现极丑



[要求]

1. 进度条控件打算使用系统提供的SeekBar

2. SeekBar 要支持拖拉功能 即:定点播放

3. SeekBar 要反映播放位置 即:播放到哪 SeekBar 就在哪



[原理]

1. 音乐定点播放:MediaPlayer.seekTo(int msecond) //单位:毫秒

2. 音乐文件播放时间:MediaPlayer.getDuration()

3. SeekBar 获取位置:SeekBar.getProgress()

4. SeekBar 最大值: SeekBar.getMax()


[代码 步骤]

定义界面:main.xml

* Button    播放控制  如:   继续   

* TextView    示播放百分比  

* SeekBar    度条  

* RadioGroup    示所有sdcard  文件 

 


1. 2. http://schemas.android.com/apk/res/android" 3. android:orientation="vertical" 4. android:layout_width="fill_parent" 5. android:layout_height="fill_parent" 6. > 7. http://schemas.android.com/apk/res/android" 8. android:orientation="horizontal" 9. android:layout_width="fill_parent" 10. android:layout_height="wrap_content" 11. > 12.

你可能感兴趣的:(Android)