1
A
回答
2
試試這個
mediaplayerplayer.setLooping(true);<--- this lets the audio to loop...
,這是倒數計時器
MyCount counter;
Long s1;
counter= new MyCount(300000,1000);
counter.start();
public void asdf(View v){ <---- method for onclick of buttons pause and resuming timer
switch(v.getId()){
case R.id.button1:<-- for pause
counter.cancel();
break;
case R.id.button2:<--- for resume
counter= new MyCount(s1,1000);
counter.start();
}
}
public class MyCount extends CountDownTimer {
public MyCount(long millisInFuture, long countDownInterval) {
super(millisInFuture, countDownInterval);
}
@Override
public void onFinish() {
mediaplayer.stop();
mediaplayer.release();
}
@Override
public void onTick(long millisUntilFinished) {
s1=millisUntilFinished;
}
}
這可以幫助您暫停媒體播放器還與...一起定時器..和讓你播放歌曲的完整5分鐘
0
//decleration
MediaPlayer mp;
//specify the path of media file
String filepath="?";
//onCreate
mp=new MediaPlayer();
Uri myUri = Uri.parse(filepath);
mp.setLooping(true);
mp = MediaPlayer.create(ActivityName.this, myUri);
mp.start();
new CountDownTimer(300000,1000) {
@Override
public void onTick(long millisUntilFinished) {
// TODO Auto-generated method stub
}
@Override
public void onFinish() {
// TODO Auto-generated method stub
if(mp.isPlaying())
{
mp.stop();
}
}
}.start();
相關問題
- 1. 音頻播放期間在特定時間回撥
- 2. 在定義的時間播放音頻文件wp7
- 3. 網絡音頻播放器,可以鏈接到音頻的特定時間?
- 4. 一次播放音頻音頻文件
- 5. 播放音頻文件時pygame的
- 6. iphone在特定時間播放聲音
- 7. 播放特定頻率的音符
- 8. 播放音頻文件
- 9. Android播放音頻文件
- 10. 播放音頻文件
- 11. 播放音頻文件
- 12. 音頻文件不播放
- 13. 音頻文件未播放
- 14. 播放Twilio音頻文件
- 15. 在播放音頻文件
- 16. 以特定樣本/時間循環播放音頻
- 17. 音頻播放器在iPhone中播放遠程音頻文件?
- 18. iOS:在特定時間播放音頻文件並在特定持續時間後停止
- 19. 離子:定期播放音頻文件
- 20. 點擊時播放音頻文件
- 21. 爲每個單元格行播放特定的音頻文件
- 22. 在python的特定位置播放音頻文件
- 23. 很短的時間後多次播放音頻文件?
- 24. 識別播放音頻文件的運行時間
- 25. Android版Libvorbis音頻文件的播放時間
- 26. 播放音頻文件的時間延遲
- 27. 檢測音頻文件播放或結束的時間
- 28. 獲取音頻m4a文件的播放時間ios
- 29. 播放音頻和視頻文件
- 30. 視頻/聲音/ MIDI播放器時間
counter = new MyCount(300000,1000); counter.start();這是什麼請詳細解釋 – Goofy 2012-03-14 04:51:37
這是60(秒)* 5(分鐘)* 1000 ..因爲該值必須以毫秒爲單位...計數器從此值開始到1秒...倒數計時器..從5分鐘.. – 5hssba 2012-03-14 04:53:02
但我要在哪裏開始mediaplayer.start(); – Goofy 2012-03-14 04:58:45