我有一个广播接收器从中调用intentservice.I想要将intentservice中收到的数据发送到activity.String s = extras.getString(“Notice”).我想将这个收到的字符串发送到一个新的活动
解决方法:
@OverrIDeprotected voID onHandleIntent(Intent arg0) { Intent dialogIntent = new Intent(getBaseContext(), myActivity.class); dialogIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); dialogIntent.putExtra("value", extras.getString("Notice")); getApplication().startActivity(dialogIntent);}
总结 以上是内存溢出为你收集整理的android – 将数据从意向服务传递到活动全部内容,希望文章能够帮你解决android – 将数据从意向服务传递到活动所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)