안 드 로 이 드 버 전 음악 재생 기
실현 효 과 는 다음 과 같다.
구현 방식:
첫 번 째 단계: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"/>
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Bitrise에서 배포 어플리케이션 설정 테스트하기이 글은 Bitrise 광고 달력의 23일째 글입니다. 자체 또는 당사 등에서 Bitrise 구축 서비스를 사용합니다. 그나저나 며칠 전 Bitrise User Group Meetup #3에서 아래 슬라이드를 발표했...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.