如果 activity 已经打开,则无法再次启动它

Can't launch the activity again if it's already open

我正在开发类似应用程序的短信管理器。现在,当收到 SMS 时,一个新的对话框 Activity 就像一个弹出窗口,向用户显示发件人的号码和消息。没关系,但如果在用户按下“后退”按钮之前出现另一条短信(弹出窗口 activity 仍位于顶部),则无法向用户显示新短信。 每条新短信都应显示在弹出窗口中 activity 如果在前台,则减少任何旧短信。

我尝试了广播接收器的 onReceive 方法 class。通过深入挖掘,我发现如果带有 SMS 的弹出窗口在前台,则无法调用弹出窗口 Activity。就是不来OnCreate方法。

广播接收器class:

public class SmsBroadcastReceiver extends BroadcastReceiver {

    public static final String SMS_BUNDLE = "pdus";
    public static String latestSMSnumber, latestSMScontent;
    SmsMessage[] msgs = null;
    String str = "";

    public void onReceive(Context context, Intent intent) {
        Bundle bundle = intent.getExtras();
        if (bundle != null) {
            Object[] pdus = (Object[]) bundle.get("pdus");
            msgs = new SmsMessage[pdus.length];
            for (int i = 0; i < msgs.length; ++i) {
                // Convert Object array
                msgs[i] = SmsMessage.createFromPdu((byte[]) pdus[i]);
                               // Fetch the text message
                str += msgs[i].getMessageBody().toString();
                str += "\n";
                latestSMSnumber = msgs[i].getOriginatingAddress();
                latestSMScontent = str;

            }
            // Display the entire SMS Message
            Log.e("TAG1 number: ", latestSMSnumber);
            Log.e("TAG2 content: ", str);
            latestSMScontent = str;
//            Toast.makeText(context, smsMessageStr, Toast.LENGTH_SHORT).show();

            Intent i=new Intent(context.getApplicationContext(),NewSMS.class);
//            i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            i.putExtra("Number", latestSMSnumber);
            i.putExtra("MsgBody", latestSMScontent);
            context.startActivity(i);
        }
    }
}

我喜欢在弹出窗口中显示任何带有号码和消息文本的新短信 window。

将此写在 manifest.xml 文件中 activity 标记 NewSMS Activity

android:launchMode=”singleTop”

更多信息请阅读下文link

https://android.jlelse.eu/android-activity-launch-mode-e0df1aa72242