1

着信SMSメッセージを監視しようとするこのプログラムがあります。しかし、エミュレーターでプログラムを実行しようとして、SMSメッセージを送信しようとすると、機能します。しかし、電話にプログラムをインストールすると、機能しません。

何が問題ですか?

また、バックエンドでもプログラムを実行したいと思います。どうやってするか?

ところで、以下はこのサンプルアプリのコード全体です。

ありがとう

RJ


import java.io.BufferedWriter;
import java.io.FileWriter;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.telephony.SmsMessage;
import android.util.Log;

public class MySMSMonitor extends BroadcastReceiver
{
    private static final String ACTION = "android.provider.Telephony.SMS_RECEIVED";

    @Override 
    public void onReceive(Context context, Intent intent) 
    {
        if(intent!=null && 
                intent.getAction()!=null && 
                ACTION.compareToIgnoreCase(intent.getAction())==0)
        {
            Object[]pduArray= (Object[]) intent.getExtras().get("pdus");
            SmsMessage[] messages = new SmsMessage[pduArray.length];

            for (int i = 0; i<pduArray.length; i++) {
                messages[i] = SmsMessage.createFromPdu ((byte[])pduArray [i]); 
            }
            Log.d("MySMSMonitor","SMS Message Received.");
        }
    }
}

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="spy.Frandy.com"
      android:versionCode="1"
      android:versionName="1.0">
    <uses-sdk android:minSdkVersion="6" />
    <uses-permission android:name="android.permission.SEND_SMS" />
    <uses-permission android:name="android.permission.RECEIVE_SMS" />

    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".TelephonyDemo"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <receiver android:name=".MySMSMonitor"> <intent-filter>
            <action android:name="android.provider.Telephony.SMS_RECEIVED"/> </intent-filter>
        </receiver>

    </application>
</manifest>

import android.app.Activity; 
import android.os.Bundle; 
import android.telephony.SmsManager; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.widget.Button; 
import android.widget.EditText; 
import android.widget.Toast;

public class TelephonyDemo extends Activity
{
    @Override 
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.main); 
        Button sendBtn = (Button)findViewById(R.id.sendSmsBtn);

        sendBtn.setOnClickListener(new OnClickListener(){
            @Override public void onClick(View view) {
            EditText addrTxt = (EditText)TelephonyDemo.this.findViewById(R.id.addrEditText);

            EditText msgTxt = (EditText)TelephonyDemo.this.findViewById(R.id.msgEditText);
            try { 
                sendSmsMessage(
                        addrTxt.getText().toString(),msgTxt.getText().toString()); 
                Toast.makeText(TelephonyDemo.this, "SMS Sent",
                        Toast.LENGTH_LONG).show(); 
            } catch (Exception e) {
                Toast.makeText(TelephonyDemo.this, "Failed to send SMS", Toast.LENGTH_LONG).show();
                e.printStackTrace();
            }
        }});
    }

    @Override 
    protected void onDestroy() {
        super.onDestroy();
    }

    private void sendSmsMessage(String address,String message)throws Exception {
        SmsManager smsMgr = SmsManager.getDefault(); 
        smsMgr.sendTextMessage(address, null, message, null, null);
    }
}
4

3 に答える 3

1

あなたが提供した小さな詳細から、実際の電話ではなくエミュレーターで動作する理由を推測します。メッセージがアプリにブロードキャストされる前に、競合する別のアプリがメッセージを傍受している可能性があります。

アプリのマニフェストでレシーバーのインテント フィルターに追加android:priority="1000"してみてください (1000 は必要と思われる数であり、必要に応じてそれ以上になる可能性があります)。

<intent-filter android:priority="1000" >
            <action android:name="android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>

詳細 -インテント フィルタの優先度

于 2012-09-05T03:42:43.463 に答える
1

Uriを使用ContentObserverして登録し、次を使用して SMS を取得することを強くお勧めします。content://smstype

cusor.getString(cusor.getColumnIndex("type")); // 1 = SMS Received 
                                               // 2 =  SMS Sent

さらに、フェッチしたカーソルから必要なデータを簡単に取得できます。Here同じためのブログです。

于 2012-09-05T04:48:51.933 に答える
0

これを試して:

<receiver android:name=".MySMSMonitor"
              android:permission="android.permission.BROADCAST_SMS">

      <intent-filter android:priority="2">
        <action android:name="android.provider.Telephony.SMS_RECEIVED" />
      </intent-filter>
    </receiver>
于 2012-09-05T04:25:26.043 に答える