안드로이드 음악 재생
일단 AndroidManifest.xml에서 서비스 등록을 해줘야 한다.
(application 태그 아래에 service 태그로 추가.)
<service android:name=".MusicService" android:enabled="true" />
1. 레이아웃
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.progdv.chap14_servicebr.MainActivity">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:textSize="20sp"
android:padding="20sp"
android:text="음악 서비스 테스트" />
<Button
android:id="@+id/start"
android:text="시작"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<Button
android:id="@+id/stop"
android:text="정지"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout></RelativeLayout>
2. 메인 액티비티
package com.progdv.chap14_servicebr;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity {
Button start, stop;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
start = (Button)findViewById(R.id.start);
stop = (Button)findViewById(R.id.stop);
start.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
startService(new Intent(MainActivity.this, MusicService.class));
}
});
stop.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
stopService(new Intent(MainActivity.this, MusicService.class));
}
});
}
}
3. 음악 파일을 담을 폴더 생성
res에서 new-Android Resource Directory에서 raw 선택.
이 raw 디렉토리 안에 음악 파일을 담아놓는다.
4. 음악 재생 관련 클래스 작성
package com.progdv.chap14_servicebr;
import android.app.Service;
import android.content.Intent;
import android.media.MediaPlayer;
import android.os.IBinder;
import android.support.annotation.Nullable;
import android.widget.Toast;
/**
* Created by Administrator on 2016-05-11.
*/
public class MusicService extends Service{
MediaPlayer player; // 미디어플레이어 타입 변수
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onCreate() { // 클래스 실행 시 자동 호출
//super.onCreate();
player = MediaPlayer.create(this, R.raw.shes_gone);
player.setLooping(false);
}
@Override
public void onDestroy() { // 서비스 중지 시 호출
//super.onDestroy();
Toast.makeText(this, "음악 재생이 중지되었습니다.", Toast.LENGTH_LONG).show();
player.stop();
}
@Override
public void onStart(Intent intent, int startId) {
//super.onStart(intent, startId);
Toast.makeText(this, "음악이 플레이됩니다.", Toast.LENGTH_LONG).show();
player.start();
}
}
'안드로이드' 카테고리의 다른 글
화면 분할 (Fragment) (0) | 2016.05.11 |
---|---|
Notification: 알림 띄우기 (0) | 2016.05.11 |
post방식으로 서버에 요청 (0) | 2016.05.10 |
get방식으로 서버에 요청 (0) | 2016.05.10 |
안드로이드 버전 하위 버전으로 변경 (0) | 2016.05.10 |