Android/Android 챕터 2-5(2)
-
[챕터 2-5-2] 리시버
결과화면 에뮬레이터 우측의 ... 를 클릭 후 수신자번호와 SMS 메시지내용을 작성 후 SEND MESSAGE 버튼 클릭 메시지가 전송완료 시, 수신화면 프로젝트명 : MyReceiver SmsReceiver AndroidManifest.xml 더보기 SmsReceiver.java 더보기 package org.minokuma.myreceiver; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.os.Build; import android.os.Bundle; import android.telephony.SmsMessage; import and..
2020.02.17 -
[챕터 2-5-1] 서비스와 수신자
결과화면 텍스트 입력 후 서비스 시작 버튼을 클릭한 후, 5초 후 서비스 : 백그라운드 프로젝트명 : MyService 더보기 package org.minokuma.myservice; import android.app.Service; import android.content.Intent; import android.os.IBinder; public class MyService extends Service { public MyService() { } @Override public void onCreate() { super.onCreate(); } @Override public int onStartCommand(Intent intent, int flags, int startId) { return super...
2020.02.17