Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Android
- 안드로이드 예제
- 홍드로이드
- android tutorial
- android studio 앱 만드는 법
- 자바
- 안드로이드 앱 만들기
- java
- Android Java
- android example
- 안드로이드 튜토리얼
- flutter
- 안드로이드
- 자바 튜토리얼
- 안드로이드 네비게이션 메뉴
- 앱 만드는 법
- hongdroid
- 개발강의
- 안드로이드 스튜디오
- 코딩
- 안드로이드 서비스
- 안드로이드 기초
- IOS
- 안드로이드 코딩 기초
- 코틀린
- 플러터
- 홍드로이드 강의
- 개발자
- Android Studio
- 앱 만들기
Archives
- Today
- Total
홍드로이드의 야매코딩
#17 안드로이드 스튜디오 백그라운드 음악 서비스(Service) 예제 [ 홍드로이드 ] 본문
무료음악 샘플 골라서 다운 합니다 : https://www.youtube.com/audiolibrary/music
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context=".MainActivity"> <Button android:id="@+id/btn_start" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="서비스 시작"/> <Button android:id="@+id/btn_stop" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="서비스 종료"/> </LinearLayout> | cs |
-
안드로이드 스튜디오 좌측 Project 디렉토리 목록에서
res 폴더 우클릭 -> new -> Android Resource Directory 클릭 -> 팝업창에서 Resource type: 을 raw로 변경 ->
OK 클릭하여 raw 디렉토리 생성 -> 무료음악 샘플 파일을 raw폴더에 드래그하여 삽입
<MainActivity.java>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | package com.example.serviceexample; import android.content.Intent; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; public class MainActivity extends AppCompatActivity { Button btn_start, btn_stop; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); btn_start = (Button)findViewById(R.id.btn_start); btn_stop = (Button)findViewById(R.id.btn_stop); btn_start.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { startService(new Intent(getApplicationContext(), MusicService.class)); } }); btn_stop.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { stopService(new Intent(getApplicationContext(), MusicService.class)); } }); } } | cs |
<MusicService.java>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | package com.example.serviceexample; import android.app.Service; import android.content.Intent; import android.media.MediaPlayer; import android.os.IBinder; import android.support.annotation.Nullable; public class MusicService extends Service{ MediaPlayer mediaPlayer; @Nullable @Override public IBinder onBind(Intent intent) { return null; } @Override public void onCreate() { super.onCreate(); mediaPlayer = MediaPlayer.create(this, R.raw.serenity); mediaPlayer.setLooping(false); } @Override public int onStartCommand(Intent intent, int flags, int startId) { mediaPlayer.start(); return super.onStartCommand(intent, flags, startId); } @Override public void onDestroy() { super.onDestroy(); mediaPlayer.stop(); } } | cs |
'Android Java' 카테고리의 다른 글
#19 안드로이드 스튜디오 FCM 푸시알림 예제 [ 홍드로이드 ] (0) | 2019.06.08 |
---|---|
#18 안드로이드 스튜디오 동영상 녹화 (MediaRecorder) 예제 [ 홍드로이드 ] (2) | 2019.06.02 |
#16 안드로이드 스튜디오 다이얼로그 팝업창 (Dialog) 예제 [ 홍드로이드 ] (1) | 2019.06.02 |
#15 안드로이드 스튜디오 Thread & Handler (스레드 & 핸들러) 예제 [ 홍드로이드 ] (0) | 2019.06.02 |
#14 안드로이드 스튜디오 (Log출력 및 주석다는 법) 예제 [ 홍드로이드 ] (2) | 2019.06.02 |
Comments