我正在使用类似应用程序的短信管理器。现在,当收到SMS时,将出现一个新的对话框活动,如弹出窗口,向用户显示发件人的号码和消息。可以,但是如果在用户按下“后退”按钮之前又出现了另一条SMS(“弹出”活动仍在顶部),则不会向用户显示新的SMS。 弹出的活动中应显示每个新的SMS,如果出现在前景中,则会减少所有较旧的SMS。
我尝试了广播接收器类的onReceive方法。通过更深入的研究,我发现如果带有SMS的弹出窗口位于前台,则无法调用“弹出活动”。只是没有使用OnCreate方法。
BroadcastReceiver类:
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);
}
}
}
我想在弹出窗口中显示带有数字和味精文本的任何新短信。
答案 0 :(得分:1)
在活动标记NewSMS活动的manifest.xml文件中写入此内容
android:launchMode =” singleTop”
有关更多信息,请阅读下面的链接
https://android.jlelse.eu/android-activity-launch-mode-e0df1aa72242