如何使用 BroadcastReceiver 更新两个 Activity

发布于 2024-12-18 00:41:41 字数 515 浏览 0 评论 0原文

我有两个活动想要用来自广播接收器的传入短信进行更新。 我有两个这样的布局:

<?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <EditText
    android:id="@+id/myEditText"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"/>
 </LinearLayout>

我不知道如何制作广播接收器,因此这两个布局将通过短信进行更新。 你能帮忙吗?

i have two activities that i want to update with an incoming SMS message from a BroadcastReceiver.
i have two layouts like this one:

<?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <EditText
    android:id="@+id/myEditText"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"/>
 </LinearLayout>

i do not know how to make a BroadcastReceiver so the two layouts would be updated with SMS.
can you help please ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

落叶缤纷 2024-12-25 00:41:41

+1 只有一个活动同时可见,但是如果您希望多个活动使用此广播,这是我的建议。

两个活动都必须注册到该广播事件。
肯定主动的会消耗并做出反应。

此时再添加一步

将 smt 存储在 SharedPreferences 中,例如 isBroadcasted = true

那么

两个活动的 onResume 方法都必须检查该值并在反应后重置为 false

希望我能解释得足够清楚,如果不是请在这里喊,以便我可以尝试附加示例代码。

...
社交编码@AspiroTV

+1 only one activity is visible at the same time, however if you want more than one activity to consume this broadcast, here is my suggestion.

both activities must register to that broadcast event.
surely the active one will consume and react.

at this point add one more step

store smt in SharedPreferences, e.g. isBroadcasted = true

then

both activities onResume method must check for this value and reset to false after reacting

hope I could explain it clear enough, if not plz shout here so that I can try to attach sample code.

...
Social Coding @ AspiroTV

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文