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 |
Tags
- JS프로그래머스
- 프로그래머스JS
- 백준알고리즘
- 포이마웹
- 다이나믹프로그래밍
- HTML
- CSS
- 프로그래머스
- JS
- 백준구현
- 안드로이드 스튜디오
- 백준js
- 백준구현문제
- 코테
- js코테
- 백준골드
- css기초
- HTML5
- 알고리즘
- 코딩테스트
- 리액트
- 백준
- 익스프레스
- 자바스크립트
- 리액트댓글기능
- 백준nodejs
- 리액트커뮤니티
- dp알고리즘
- 몽고DB
- 프로그래머스코테
Archives
- Today
- Total
개발새발 로그
안드로이드 스튜디오 -서비스 본문
오늘은 서비스에 대해 알아보겠습니다.
서비스의 생명주기
화면이 종료되어도 계속되는 음악 서비스 만들기
MainActivity
package com.example.myapplication;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity {
Intent intent;
Button btnStart,btnStop;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
setTitle("서비스 테스트 예제");
intent = new Intent(this , MusicService.class);
btnStart=(Button) findViewById(R.id.button);
btnStop=(Button) findViewById(R.id.button2);
btnStart.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
startService(intent);
android.util.Log.e("서비스 텟흐트","startService()");
}
});
btnStop.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
stopService(intent);
android.util.Log.e("서비스 텟흐트","stopService()");
}
});
}
}
MusicService.java
package com.example.myapplication;
import android.app.Service;
import android.content.Intent;
import android.media.MediaPlayer;
import android.os.IBinder;
public class MusicService extends Service {
MediaPlayer mp;
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onCreate() {
android.util.Log.e("서비스 테스트","onCreate()");
super.onCreate();
}
@Override
public void onDestroy() {
android.util.Log.e("종료 테스트","onDestory()");
mp.stop();
super.onDestroy();
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
android.util.Log.e("시작 테스트","onStartCommand()");
mp=MediaPlayer.create(this,R.raw.song1);
mp.setLooping(true);
mp.start();
return super.onStartCommand(intent, flags, startId);
}
}
activitymain.xml
<?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"
tools:context=".MainActivity"
android:orientation="vertical">
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="start" />
<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="stop" />
</LinearLayout>
간단한 설명
728x90
반응형
LIST
'안드로이드' 카테고리의 다른 글
안드로이드 스튜디오- 뷰 컨테이너 (0) | 2022.05.22 |
---|---|
안드로이드 스튜디오-오류 (0) | 2022.05.20 |
안드로이드 스튜디오 고급위젯 간단하게 다루기 - 날짜/시간 예약 앱 만들기 (0) | 2022.05.20 |
안드로이드 스튜디오 고급위젯 간단하게 다루기 (0) | 2022.05.20 |
안드로이드 스튜디오-그리드 레이아웃으로 간이 계산기 만들기 (0) | 2022.05.17 |