Android 로 컬 음악 재생 기 를 간단하게 구현 합 니 다.

4893 단어 Android플레이어
음악 재생 은 service 를 호출 해 야 합 니 다.여기 서 재생 절 차 를 간단하게 정리 할 뿐 입 니 다.

public class PlayMusicService extends Service {

 //            。
 @Override
 public IBinder onBind(Intent intent) {
  return null;
 }

}

<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"
 android:orientation="vertical"
 tools:context=".MainActivity" >

 <EditText
  android:id="@+id/et_path"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:hint="           " />

 <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:orientation="horizontal" >

  <Button
   android:id="@+id/bt_play"
   android:onClick="play"
   android:layout_width="0dip"
   android:layout_height="wrap_content"
   android:layout_weight="1"
   android:text="  " />
  <Button
    android:id="@+id/bt_pause"
   android:onClick="pause"
   android:layout_width="0dip"
   android:layout_height="wrap_content"
   android:layout_weight="1"
   android:text="  " />
  <Button
    android:id="@+id/bt_stop"
   android:onClick="stop"
   android:layout_width="0dip"
   android:layout_height="wrap_content"
   android:layout_weight="1"
   android:text="  " />
  <Button
    android:id="@+id/bt_replay"
   android:onClick="replay"
   android:layout_width="0dip"
   android:layout_height="wrap_content"
   android:layout_weight="1"
   android:text="  " />
 </LinearLayout>

</LinearLayout>


public class MainActivity extends Activity {
 private EditText et_path;

 private MediaPlayer mediaPlayer;

 private Button bt_play,bt_pause,bt_stop,bt_replay;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 et_path = (EditText) findViewById(R.id.et_path);
 bt_play = (Button) findViewById(R.id.bt_play);
 bt_pause = (Button) findViewById(R.id.bt_pause);
 bt_stop = (Button) findViewById(R.id.bt_stop);
 bt_replay = (Button) findViewById(R.id.bt_replay);
 }
 /**
 *   
 * @param view
 */
 public void play(View view) {
 String filepath = et_path.getText().toString().trim();
 File file = new File(filepath);
 if(file.exists()){
  try {
  mediaPlayer = new MediaPlayer();
  mediaPlayer.setDataSource(filepath);//        。
  mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
  mediaPlayer.prepare();//             c           。
  mediaPlayer.start();
  bt_play.setEnabled(false);
  mediaPlayer.setOnCompletionListener(new OnCompletionListener() {
   @Override
   public void onCompletion(MediaPlayer mp) {
   bt_play.setEnabled(true);
   }
  });
  } catch (Exception e) {
  e.printStackTrace();
  Toast.makeText(this, "    ", 0).show();
  }
 }else{
  Toast.makeText(this, "     ,        ", 0).show();
 }
 }
 /**
 *   
 * @param view
 */
 public void pause(View view) {
 if("  ".equals(bt_pause.getText().toString())){
  mediaPlayer.start();
  bt_pause.setText("  ");
  return;
 }
 if(mediaPlayer!=null&&mediaPlayer.isPlaying()){
  mediaPlayer.pause();
  bt_pause.setText("  ");
 }
 }
 /**
 *   
 * @param view
 */
 public void stop(View view) {
 if(mediaPlayer!=null&&mediaPlayer.isPlaying()){
  mediaPlayer.stop();
  mediaPlayer.release();
  mediaPlayer = null;
 }
 bt_pause.setText("  ");
 bt_play.setEnabled(true);
 }
 /**
 *   
 * @param view
 */
 public void replay(View view) {
 if(mediaPlayer!=null&&mediaPlayer.isPlaying()){
  mediaPlayer.seekTo(0);
 }else{
  play(view);
 }
 bt_pause.setText("  ");
 }

}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기