0

AsyncTask から SMS を送信する必要があります。そこで、SMS というアクティビティを作成します。私のAsyncTaskで、このコンストラクターを取得しました:

public AsyncTask(Context pContext, TextView pTxtWorkProgress, TextView pTxtMsg, ProgressBar pProgressbar_line, SMS pSmsActivity){
        context = pContext;
        txtMsg = pTxtMsg;
        txtWorkProgress = pTxtWorkProgress;
        progressbar_line = pProgressbar_line;
        smsActivity = pSmsActivity;
    }

次に、doInBackground() でコードを取得しました。

if(smsActivity != null)
 smsActivity.sendSMS("9999", "4444");
else
 hasErrorSms = true;

私のsmsActivityでは、メソッドsendSMS()を取得しました:

public void sendSMS(String phoneNumber, String message){        
    String SENT = "SMS_SENT";
    String DELIVERED = "SMS_DELIVERED";

    PendingIntent sentPI = PendingIntent.getBroadcast(this, 0, new Intent(SENT), 0);

    PendingIntent deliveredPI = PendingIntent.getBroadcast(this, 0, new Intent(DELIVERED), 0);

    //---when the SMS has been sent---
    registerReceiver(new BroadcastReceiver(){
        @Override
        public void onReceive(Context arg0, Intent arg1) {
            switch (getResultCode()){
                case Activity.RESULT_OK:
                    Toast.makeText(getBaseContext(), "SMS sent", Toast.LENGTH_SHORT).show();
                    Util.mSMS_SENT_STATUS = Util.mSMS_SENT_RESULT_OK;
                    break;
                case SmsManager.RESULT_ERROR_GENERIC_FAILURE:
                    Toast.makeText(getBaseContext(), "Generic failure", Toast.LENGTH_SHORT).show();
                    Util.mSMS_SENT_STATUS = Util.mSMS_SENT_RESULT_ERROR_GENERIC_FAILURE;                        
                    break;
                case SmsManager.RESULT_ERROR_NO_SERVICE:
                    Toast.makeText(getBaseContext(), "No service", Toast.LENGTH_SHORT).show();
                    Util.mSMS_SENT_STATUS = Util.mSMS_SENT_RESULT_ERROR_NO_SERVICE;                        
                    break;
                case SmsManager.RESULT_ERROR_NULL_PDU:
                    Toast.makeText(getBaseContext(), "Null PDU", Toast.LENGTH_SHORT).show();
                    Util.mSMS_SENT_STATUS = Util.mSMS_SENT_RESULT_ERROR_NULL_PDU;                        
                    break;
                case SmsManager.RESULT_ERROR_RADIO_OFF:
                    Toast.makeText(getBaseContext(), "Radio off", Toast.LENGTH_SHORT).show();
                    Util.mSMS_SENT_STATUS = Util.mSMS_SENT_RESULT_ERROR_RADIO_OFF;                        
                    break;
            }
        }
    }, new IntentFilter(SENT));

    //---when the SMS has been delivered---
    registerReceiver(new BroadcastReceiver(){
        @Override
        public void onReceive(Context arg0, Intent arg1) {
            switch (getResultCode())
            {
                case Activity.RESULT_OK:
                    Toast.makeText(getBaseContext(), "SMS delivered", Toast.LENGTH_SHORT).show();
                    break;
                case Activity.RESULT_CANCELED:
                    Toast.makeText(getBaseContext(), "SMS not delivered", Toast.LENGTH_SHORT).show();
                    break;                        
            }
        }
    }, new IntentFilter(DELIVERED));        

    SmsManager sms = SmsManager.getDefault();
    sms.sendTextMessage(phoneNumber, null, message, sentPI, deliveredPI);        
}

SMSクラス内でインテントを取得しようとすると、NullPointerExceptionが発生しました。

これは私が AsyncTask を呼び出す方法です:

new AsyncTask(this, txtWorkProgress, txtMsg, progressbar_line, new SMS()).execute(larr_what_have_to_upate_in_device.toString(), lCD_DEVIC);

新しい SMS() が機能しないことはわかっています。どうすればよいか教えていただけますか? ありがとう。

4

1 に答える 1

1

クラッシュが次の行で発生していると報告しました。

PendingIntent sentPI = PendingIntent.getBroadcast(this, 0, new Intent(SENT), 0);

過去に次のようにこれらのインテントを正常にセットアップしました。

public static final String SENT = "SMS_SENT";
public static final String DELIVERED = "SMS_DELIVERED";

final String name = "Some-Name";
final PendingIntent sentPI = PendingIntent.getBroadcast(this, 0,
    (new Intent(SENT)).putExtra("name", name),
    PendingIntent.FLAG_UPDATE_CURRENT);
final PendingIntent delivedPI = PendingIntent.getBroadcast(this, 0,
    (new Intent(DELIVERED)).putExtra("name", name),
    PendingIntent.FLAG_UPDATE_CURRENT);

nameしたがって、余分なデータとPendingIntent.FLAG値を上記のように追加してみてください。

于 2013-03-19T15:10:01.460 に答える