그냥 콘솔창에 찍히는 거긴 한데.. 어쨌든..
예제파일
내가 따라해본 파일
음.. 별내용도 없는데 크네..
app / manifests / AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.sms.smstest">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name="com.example.sms.smstest.Broadcast">
<inent-filter android:priority="9999">
<action android:name ="android.intent.action.BOOT_COMPLETED"/>
<action android:name="android.provider.Telephony.SMS_RECEIVED"/>
</inent-filter>
</receiver>
</application>
<uses-permission android:name="android.permission.RECIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.READ_SMS"/>
<uses-permission android:name="android.permission.RECEIVE_SMS"/>
</manifest>
app / java / com.example.sms.smstest/Broadcast
package com.example.sms.smstest;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.telephony.SmsMessage;
import android.util.Log;
import java.util.Date;
/**
* Created by yukyeong on 2016-06-27.
*/
public class Broadcast extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent){
//수신한 액션을 이 onReceive메소드에서 처리하게 됩니다.
if (Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction())){
Log.d("onReceive()","부팅완료");
}
if (Intent.ACTION_SCREEN_ON == intent.getAction()) {
Log.d("onReceive()","스크린 ON");
}
if (Intent.ACTION_SCREEN_OFF == intent.getAction()) {
Log.d("onReceive()","스크린 OFF");
}
if ("android.provider.Telephony.SMS_RECEIVED".equals(intent.getAction())) {
Log.d("onReceive()","문자가 수신되었습니다");
// SMS 메시지를 파싱합니다.
Bundle bundle = intent.getExtras();
Object messages[] = (Object[])bundle.get("pdus");
SmsMessage smsMessage[] = new SmsMessage[messages.length];
for(int i = 0; i < messages.length; i++) {
// PDU 포맷으로 되어 있는 메시지를 복원합니다.
smsMessage[i] = SmsMessage.createFromPdu((byte[])messages[i]);
}
// SMS 수신 시간 확인
Date curDate = new Date(smsMessage[0].getTimestampMillis());
Log.d("문자 수신 시간", curDate.toString());
// SMS 발신 번호 확인
String origNumber = smsMessage[0].getOriginatingAddress();
// SMS 메시지 확인
String message = smsMessage[0].getMessageBody().toString();
Log.d("문자 내용", "발신자 : "+origNumber+", 내용 : " + message);
// abortBroadcast();
// 우선순위가 낮은 다른 문자 앱이 수신을 받지 못하도록 함
}
}
}
app / java / com.example.sms.smstest/MainActivity
package com.example.sms.smstest;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.net.Uri;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.telephony.TelephonyManager;
import android.util.Log;
import android.view.View;
import android.view.Menu;
import android.view.MenuItem;
public class MainActivity extends AppCompatActivity {
BroadcastReceiver myReceiver = new Broadcast();
/**
* ATTENTION: This was auto-generated to implement the App Indexing API.
* See https://g.co/AppIndexing/AndroidStudio for more information.
*/
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
IntentFilter intentFilter = new IntentFilter(Intent.ACTION_SCREEN_ON);
intentFilter.addAction(Intent.ACTION_SCREEN_OFF);
intentFilter.addAction(Intent.ACTION_BOOT_COMPLETED);
intentFilter.addAction("android.provider.Telephony.SMS_RECEIVED");
registerReceiver(myReceiver, intentFilter);
Log.d("onCreate()", "브로드캐스트리시버 등록됨");
}
@Override
protected void onDestroy() {
super.onDestroy();
unregisterReceiver(myReceiver);
Log.d("onDestory()", "브로드캐스트리시버 해제됨");
}
}
반응형
'차근차근 > 안드로이드 스튜디오' 카테고리의 다른 글
안드로이드 스튜디오 + OCR / Simple-Android-OCR 실행 - 3 (실패) (0) | 2016.06.28 |
---|---|
안드로이드 스튜디오 + OCR / Simple-Android-OCR 실행 - 2 (실패) (0) | 2016.06.27 |
안드로이드 스튜디오 + OCR / Simple-Android-OCR 실행 - 1 (실패) (3) | 2016.06.24 |
링크 메모 (0) | 2016.06.24 |
No changes to deploy (0) | 2016.06.23 |