gpt4 book ai didi

java - ''Launch MainActivity' ' 代码阻止文本显示

转载 作者:行者123 更新时间:2023-12-01 13:53:22 25 4
gpt4 key购买 nike

我原来的应用程序接收文本并使用字符分割来分割并显示在 TextView 中。然后,我实现了从 BroadcastReceiver 调用 Activity 的代码,以便在收到文本时该 Activity 被带到前面,但应用程序的 TextView 没有更新。

如果我从 SMSReceiver.java 中删除,它可以正常工作,但应用程序不会被带到前面。

//--Launch the MainActivity--//
Intent mainActivityIntent = new Intent(context, MainActivity.class);
mainActivityIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(mainActivityIntent);

SMSReceiver.java代码:

package com.example.smssend;

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 SMSReceiver extends BroadcastReceiver
{
@Override
public void onReceive(Context context, Intent intent)
{


//--Get the SMS Message passed in---//
Bundle bundle = intent.getExtras();
SmsMessage[] msgs = null;
String str = "";
if (bundle != null)
{


//--Retrieve the SMS message received--//
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]);
str += msgs[i].getMessageBody().toString();


}
//--Display the new SMS Message--//
Toast.makeText(context, str, Toast.LENGTH_SHORT).show();
String sender = null;



//--Launch the MainActivity--//
Intent mainActivityIntent = new Intent(context, MainActivity.class);


mainActivityIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

context.startActivity(mainActivityIntent);


//--Send a broadcast intent to update the SMS received in the activity--//


Intent broadcastIntent = new Intent();
broadcastIntent.setAction("SMS_RECEIVED_ACTION");
broadcastIntent.putExtra("sms", str);
context.sendBroadcast(broadcastIntent);
}
}
}

最佳答案

可能当您发送broadcastIntent时,Activity尚未加载或绑定(bind)到任何接收器。

您可以避免在 mainActivityIntent 中传递消息的问题,而不是使用广播Intent 来更新 Activity。

您可以在 Activity 中使用 getIntent() 恢复 Intent,然后更新 UI。

Intent mainActivityIntent = new Intent(context, MainActivity.class);
mainActivityIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
mainActivityIntent.putExtra("sms", str);
context.startActivity(mainActivityIntent);

在您的 Activity 中

    @Override
protected void onResume()
{
super.onResume();
Intent myIntent = getIntent();
String sms = myIntent.getStringExtra("sms");
if (sms != null && !"".equals(sms))
{
mTextView.setText(sms);
}
}

希望有帮助:)

关于java - ''Launch MainActivity' ' 代码阻止文本显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19791981/

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