如何在BroadcastReceiver类中使用getApplicationContext?

11

我正在使用广播器类来监听短信信息,使用的代码如下:

package com.escortme.basic;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.telephony.SmsMessage;
import android.widget.Toast;

public class SMSReceiverActivity extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
        // Parse the SMS.
        Bundle bundle = intent.getExtras();
        SmsMessage[] msgs = null;
        String str = "";
        if (bundle != null)
        {
            // Retrieve the SMS.
            Object[] pdus = (Object[]) bundle.get("pdus");
            msgs = new SmsMessage[pdus.length];
            for (int i=0; i<msgs.length; i++)
            {
                msgs[i] = SmsMessage.createFromPdu((byte[])pdus[i]);
                // In case of a particular App / Service.
                //if(msgs[i].getOriginatingAddress().equals("+91XXX"))
                //{
                str += "SMS from " + msgs[i].getOriginatingAddress();
                str += " :";
                str += msgs[i].getMessageBody().toString();
                str += "\n";
                //}
            }
            // Display the SMS as Toast.
            Toast.makeText(context, str, Toast.LENGTH_SHORT).show();


            Pol_ViewActivity appState = ((Pol_ViewActivity)getApplicationContext()); // ERROR
            appState.move_map_to("33.786047","-59.187287");
        }
    }
}

并且它在清单文件中被定义为:

    <receiver 
      android:name="com.escortme.basic.SMSReceiverActivity"
      android:enabled="true">
      <intent-filter>
        <action android:name="android.provider.Telephony.SMS_RECEIVED" />
      </intent-filter>
    </receiver>

但问题是它说:"The method getApplicationContext() is undefined for the type SMSReceiverActivity"。

有谁知道为什么会出现这种情况以及如何解决?谢谢


2
onReceive() 中,只需使用 context.getApplicationContext() - Someone Somewhere
2个回答

17

看一下onReceive()方法的签名。

public void onReceive(Context context, Intent intent) {

你将会接收到一个上下文参数,请在需要时使用该上下文。

Pol_ViewActivity appState = ((Pol_ViewActivity)context); 

编辑:我也不知道你试图做什么。但是你可能不应该像你似乎正在做的那样尝试获取一个Activity对象并调用其方法。


我有一个名为Pol_ViewActivity的活动,它扩展了MapActivity,在该活动运行时,需要监听短信文本。监听代码位于SMSReceiverActivity中(代码在上面)。现在,当检测到短信时,它需要调用Pol_ViewActivity中的一个方法,以便我可以将smstext的字符串版本发送到Pol_ViewActivity中的一个方法,以便我可以更新谷歌地图。这有帮助吗? - omega

5
获取应用程序上下文的一个原因是要获取 WIFI_SERVICE,因为必须在应用程序上下文中查找它或者在 Android N 以下版本的设备上会出现内存泄漏。
正如Someone Somewhere曾经说过,在onReceive()中,只需使用context.getApplicationContext()

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接