gpt4 book ai didi

android - 如何在 BroadcastReceiver 类中使用 getApplicationContext?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:23:37 26 4
gpt4 key购买 nike

我正在使用 broadcaster 类使用此代码收听短信

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");
}
}
}

它在 list 中是这样定义的

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

但问题是它说“方法 getApplicationContext() 未定义 SMSReceiverActivity 类型”。

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

最佳答案

查看 onReceive() 的方法签名

public void onReceive(Context context, Intent intent) {

你被传递一个上下文作为参数。您应该在需要时使用该上下文。

Pol_ViewActivity appState = ((Pol_ViewActivity)context); 

编辑:我也不知道你到底想做什么。但是您可能不应该像您看起来那样尝试获取 Activity 对象并在其上调用方法。

关于android - 如何在 BroadcastReceiver 类中使用 getApplicationContext?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11303209/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com