안 드 로 이 드 버 전 음악 재생 기

11827 단어 Android플레이어
음악 재생 기 는 매우 흔히 볼 수 있 는 응용 프로그램 이다.이 블 로 그 는 간단 한 음악 재생 기 를 만 드 는 방법 을 소개 한다.이 음악 재생 기 는 다음 과 같은 기능 을 가진다.노래 재생,노래 재생 중단,노래 를 표시 하 는 총 시간,노래 를 표시 하 는 현재 재생 시간,슬라이더 를 조절 하면 노래 를 언제든지 재생 하고 음악 재생 기 를 종료 할 수 있다.
실현 효 과 는 다음 과 같다.

구현 방식:
첫 번 째 단계:Android Studio 를 사용 하여 Android 프로젝트 를 만 들 고 activity 를 수정 합 니 다.main.xml 파일

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 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" 
 tools:context="com.fyt.musicplayer.MainActivity" 
 android:orientation="vertical"> 
 
 <!--      --> 
 <SeekBar 
 android:id="@+id/sb" 
 android:layout_width="match_parent" 
 android:layout_height="wrap_content" /> 
 
 <RelativeLayout 
 android:layout_width="match_parent" 
 android:layout_height="wrap_content"> 
 
 <!--      --> 
 <TextView 
 android:id="@+id/tv_progress" 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:text="00:00"/> 
 
 <!--     --> 
 <TextView 
 android:id="@+id/tv_total" 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:layout_alignParentRight="true" 
 android:text="00:00"/> 
 
 </RelativeLayout> 
 
 <Button 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:text="    " 
 android:onClick="play"/> 
 
 <Button 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:text="    " 
 android:onClick="pausePlay"/> 
 
 <Button 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:text="    " 
 android:onClick="continuePlay"/> 
 
 <Button 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:text="  " 
 android:onClick="exit"/> 
 
</LinearLayout> 
두 번 째 단계:음악 재생 의 논 리 를 처리 하기 위해 Music Service.java 파일 을 새로 만 듭 니 다.

package com.fyt.musicplayer; 
 
import android.app.Service; 
import android.content.Intent; 
import android.media.MediaPlayer; 
import android.os.Binder; 
import android.os.Bundle; 
import android.os.IBinder; 
import android.os.Message; 
import android.support.annotation.Nullable; 
 
import java.io.IOException; 
import java.util.Timer; 
import java.util.TimerTask; 
 
//                
public class MusicService extends Service { 
 
 private MediaPlayer player; 
 private Timer timer; 
 
 //     ,      
 @Nullable 
 @Override 
 public IBinder onBind(Intent intent) { 
 
 return new MusicControl(); 
 } 
 
 //          
 @Override 
 public void onCreate() { 
 super.onCreate(); 
 
 //          
 player = new MediaPlayer(); 
 } 
 
 //         
 @Override 
 public void onDestroy() { 
 super.onDestroy(); 
 
 //       
 player.stop(); 
 
 //        
 player.release(); 
 
 // player    
 player = null; 
 } 
 
 //     
 public void play() { 
 
 try { 
 
 if(player == null) 
 { 
 player = new MediaPlayer(); 
 } 
 
 //   
 player.reset(); 
 
 //        
 player.setDataSource("sdcard/zxmzf.mp3"); 
 
 //       
 player.prepare(); 
 
 //     
 player.start(); 
 
 //      
 addTimer(); 
 
 } catch (IOException e) { 
 e.printStackTrace(); 
 } 
 } 
 
 //       
 public void pausePlay() { 
 
 player.pause(); 
 } 
 
 //       
 public void continuePlay() { 
 
 player.start(); 
 } 
 
 //                 
 class MusicControl extends Binder implements MusicInterface { 
 
 @Override 
 public void play() { 
 
 MusicService.this.play(); 
 } 
 
 @Override 
 public void pausePlay() { 
 
 MusicService.this.pausePlay(); 
 } 
 
 @Override 
 public void continuePlay() { 
 
 MusicService.this.continuePlay(); 
 } 
 
 @Override 
 public void seekTo(int progress) { 
 
 MusicService.this.seekTo(progress); 
 } 
 } 
 
 //          
 public void seekTo(int progress) { 
 
 player.seekTo(progress); 
 } 
 
 //                     
 public void addTimer() { 
 
 //            
 if(timer == null) { 
 
 //        
 timer = new Timer(); 
 
 timer.schedule(new TimerTask() { 
 
 //       
 @Override 
 public void run() { 
 
 //        
 int duration = player.getDuration(); 
 
 //            
 int currentPosition = player.getCurrentPosition(); 
 
 //       
 Message msg = MainActivity.handler.obtainMessage(); 
 
 //                 
 Bundle bundle = new Bundle(); 
 bundle.putInt("duration", duration); 
 bundle.putInt("currentPosition", currentPosition); 
 msg.setData(bundle); 
 
 //               
 MainActivity.handler.sendMessage(msg); 
 } 
 }, 
 
 //        5  ,     run  ,   500       
 5, 500); 
 } 
 } 
} 
세 번 째 단계:음악 재생 을 위 한 인터페이스 만 들 기

package com.fyt.musicplayer; 
 
//           
public interface MusicInterface { 
 
 //     
 void play(); 
 
 //       
 void pausePlay(); 
 
 //       
 void continuePlay(); 
 
 //          
 void seekTo(int progress); 
} 

STEP 4:MainActivity.java 파일 수정

package com.fyt.musicplayer; 
 
import android.app.Activity; 
import android.content.ComponentName; 
import android.content.Intent; 
import android.content.ServiceConnection; 
import android.os.Bundle; 
import android.os.Handler; 
import android.os.IBinder; 
import android.os.Message; 
import android.view.View; 
import android.widget.SeekBar; 
import android.widget.TextView; 
 
public class MainActivity extends Activity { 
 
 MyServiceConn conn; 
 Intent intent; 
 MusicInterface mi; 
 
 //               
 private static SeekBar sb; 
 
 private static TextView tv_progress; 
 private static TextView tv_total; 
 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
 super.onCreate(savedInstanceState); 
 setContentView(R.layout.activity_main); 
 
 tv_progress = (TextView) findViewById(R.id.tv_progress); 
 tv_total = (TextView) findViewById(R.id.tv_total); 
 
 //       
 intent = new Intent(this, MusicService.class); 
 
 //     
 startService(intent); 
 
 //         
 conn = new MyServiceConn(); 
 
 //     
 bindService(intent, conn, BIND_AUTO_CREATE); 
 
 //            
 sb = (SeekBar) findViewById(R.id.sb); 
 
 //           
 sb.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() { 
 
 //           ,       
 @Override 
 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { 
 
 } 
 
 //        ,       
 @Override 
 public void onStartTrackingTouch(SeekBar seekBar) { 
 
 } 
 
 //        ,       
 @Override 
 public void onStopTrackingTouch(SeekBar seekBar) { 
 
 //                
 int progress = seekBar.getProgress(); 
 
 //       
 mi.seekTo(progress); 
 } 
 }); 
 } 
 
 //          
 public static Handler handler = new Handler(){ 
 
 //                   
 @Override 
 public void handleMessage(Message msg) { 
 
 //                   
 Bundle bundle = msg.getData(); 
 
 //      (  ) 
 int duration = bundle.getInt("duration"); 
 
 //       (  ) 
 int currentPostition = bundle.getInt("currentPosition"); 
 
 //        
 sb.setMax(duration); 
 sb.setProgress(currentPostition); 
 
 //       
 int minute = duration / 1000 / 60; 
 int second = duration / 1000 % 60; 
 
 String strMinute = null; 
 String strSecond = null; 
 
 //             10 
 if(minute < 10) { 
 
 //         0 
 strMinute = "0" + minute; 
 } else { 
 
 strMinute = minute + ""; 
 } 
 
 //             10 
 if(second < 10) 
 { 
 //        0 
 strSecond = "0" + second; 
 } else { 
 
 strSecond = second + ""; 
 } 
 
 tv_total.setText(strMinute + ":" + strSecond); 
 
 //         
 minute = currentPostition / 1000 / 60; 
 second = currentPostition / 1000 % 60; 
 
 //             10 
 if(minute < 10) { 
 
 //         0 
 strMinute = "0" + minute; 
 } else { 
 
 strMinute = minute + ""; 
 } 
 
 //             10 
 if(second < 10) { 
 
 //        0 
 strSecond = "0" + second; 
 } else { 
 
 strSecond = second + ""; 
 } 
 
 tv_progress.setText(strMinute + ":" + strSecond); 
 } 
 }; 
 
 //           
 public void play(View view) { 
 
 //     
 mi.play(); 
 } 
 
 //             
 public void pausePlay(View view) { 
 
 //       
 mi.pausePlay(); 
 } 
 
 //             
 public void continuePlay (View view) { 
 
 //       
 mi.continuePlay(); 
 } 
 
 //             
 public void exit(View view) { 
 
 //     
 unbindService(conn); 
 
 //     
 stopService(intent); 
 
 //    activity 
 finish(); 
 } 
 
 //          
 class MyServiceConn implements ServiceConnection { 
 
 @Override 
 public void onServiceConnected(ComponentName name, IBinder service) { 
 
 //        
 mi = (MusicInterface) service; 
 } 
 
 @Override 
 public void onServiceDisconnected(ComponentName name) { 
 
 } 
 } 
} 
다섯 번 째 단계:설정 파일 의 Application 노드 에 서비스 구성 요 소 를 추가 합 니 다.

<service android:name="com.fyt.playmusic.MusicService"> 
 </service> 
마지막 단계:SD 카드 읽 기 권한 추가

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> 
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기