如何使用 BroadcastReceiver 更新两个 Activity
我有两个活动想要用来自广播接收器的传入短信进行更新。 我有两个这样的布局:
<?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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是 如何使用后台服务中的数据更新 Android Activity 中的 UI
Here is a complete explanation and a Demo example for How to Update the UI in an Android Activity Using Data from a Background Service
+1 只有一个活动同时可见,但是如果您希望多个活动使用此广播,这是我的建议。
此时再添加一步
那么
希望我能解释得足够清楚,如果不是请在这里喊,以便我可以尝试附加示例代码。
...
社交编码@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.
at this point add one more step
then
hope I could explain it clear enough, if not plz shout here so that I can try to attach sample code.
...
Social Coding @ AspiroTV