本文介绍了记录广播意图和手动触发它们(Android版)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
嘿,伙计们,
我的android开发的时候,我已经错过了可以记录发生的每一个广播意图的功能。有时,它一直非常有用的有一个这样的功能...
我也想知道如何手动触发在模拟器上的广播意图。
是否有可用的广播意图的整个概况?
将是巨大的,如果有人有一些答案,
映入眼帘,
poeschlorn
解决方案
They are logged to LogCat. Use adb logcat
, DDMS, or the DDMS perspective in Eclipse to view them.
For the ones you are allowed to send, call sendBroadcast()
. For system-generated ones, you generally cannot "trigger" them "manually".
Not really. Check out the documentation for Intent. All of the ACTION_
strings whose comment says "Broadcast Action" are broadcast Intents. There are a few other scattered elsewhere in the system.
这篇关于记录广播意图和手动触发它们(Android版)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!