android音樂播放器常見操作

來源:互聯網
上載者:User
/*變數聲明*/private ImageButton playBtn = null;//播放、暫停private ImageButton latestBtn = null;//上一首private ImageButton nextButton = null;//下一首private ImageButton forwardBtn = null;//快進private ImageButton rewindBtn = null;//快退private TextView playtime = null;//已播放時間private TextView durationTime = null;//歌曲時間private SeekBar seekbar = null;//歌曲進度private Handler handler = null;//用於進度條private Handler fHandler = null;//用於快進private int currentPosition;//當前播放位置/*獲得列表傳過來的資料*/@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.play);Intent intent = this.getIntent();Bundle bundle = intent.getExtras();_ids = bundle.getIntArray("_ids");    //獲得儲存音樂檔案_ID的數組position = bundle.getInt("position"); //獲得應該播放的音樂的號數,既播放第幾首        //代碼未完,見下面的代碼}/*初始化控制項*/playtime = (TextView)findViewById(R.id.playtime);         //顯示已經播放的時間durationTime = (TextView)findViewById(R.id.duration);     //顯示歌曲總時間playBtn = (ImageButton)findViewById(R.id.playBtn);       //開始播放、暫停播放按鈕latestBtn = (ImageButton)findViewById(R.id.latestBtn);   //播放上一首按鈕nextButton = (ImageButton)findViewById(R.id.nextBtn);    //播放下一首按鈕forwardBtn = (ImageButton)findViewById(R.id.forwardBtn); //快進按鈕rewindBtn = (ImageButton)findViewById(R.id.rewindBtn);   //快退按鈕seekbar = (SeekBar)findViewById(R.id.seekbar);           //播放進度條/*定義各控制項的回呼函數*/playBtn.setOnClickListener(new View.OnClickListener() {//點擊“播放、暫停”按鈕時回調@Overridepublic void onClick(View v) {if (mp.isPlaying()){                     //如果現正播放則暫停pause();playBtn.setBackgroundResource(     R.drawable.play_selecor);   //更改按鍵狀態表徵圖} else{                                  //如果沒有播放則恢複播放play();playBtn.setBackgroundResource(    R.drawable.pause_selecor);   //更改按鍵狀態表徵圖}}});latestBtn.setOnClickListener(new View.OnClickListener() {//點擊“播放上一首”按鈕時回調@Overridepublic void onClick(View v) {int num = _ids.length;                  //獲得音樂的數目if(position==0){                        //如果已經時第一首則播放最後一首position=num-1;}else{                                  //否則播放上一首position-=1;}int pos = _ids[position];              //得到將要播放的音樂的_IDsetup();                               //做播放前的準備工作play();       //開始播放}});nextButton.setOnClickListener(new View.OnClickListener(){//點擊“播放下一首”按鈕時回調@Overridepublic void onClick(View v) {                int num = _ids.length;                 //獲得音樂的數目if (position==num-1){                  //如果已經是最後一首,則播放第一首position=0; }else{position+=1;                  //否則播放下一首}int pos = _ids[position];             //得到將要播放的音樂的_IDsetup();                              //做播放前的準備工作play();                               //開始播放}});forwardBtn.setOnTouchListener(new OnTouchListener() {    //點擊“快進”按鈕時回調@Overridepublic boolean onTouch(View v, MotionEvent event) {switch (event.getAction()) {case MotionEvent.ACTION_DOWN:fHandler.post(forward); //此處使用handler對象更新進度條mp.pause();//點擊快進按鈕時,音樂暫停播放break;case MotionEvent.ACTION_UP:fHandler.removeCallbacks(forward);mp.start();//鬆開快進按鈕時,音樂暫恢複播放playBtn.setBackgroundResource(R.drawable.pause_selecor);break;}return false;}});rewindBtn.setOnTouchListener(new OnTouchListener() {    //點擊“快退”按鈕時回調@Overridepublic boolean onTouch(View v, MotionEvent event) {switch (event.getAction()) {case MotionEvent.ACTION_DOWN:fHandler.post(rewind);mp.pause();//點擊快退按鈕時,音樂暫暫停播放break;case MotionEvent.ACTION_UP:fHandler.removeCallbacks(rewind);mp.start();//鬆開快退按鈕時,音樂暫恢複播放playBtn.setBackgroundResource(R.drawable.pause_selecor);break;}return false;}});seekbar.setOnSeekBarChangeListener(new OnSeekBarChangeListener() {@Overridepublic void onStopTrackingTouch(SeekBar seekBar) {mp.start();//停止拖動進度條時,音樂開始播放}@Overridepublic void onStartTrackingTouch(SeekBar seekBar) {mp.pause();//開始拖動進度條時,音樂暫停播放}@Overridepublic void onProgressChanged(SeekBar seekBar, int progress,boolean fromUser) {if(fromUser){mp.seekTo(progress);//當進度條的值改變時,音樂播放器從新的位置開始播放}}});
相關文章

聯繫我們

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