我一直在关注一个事件(使用 BroacastReceiver)和从文档(http://developer.android.com/reference/android/net/ConnectivityManager.html)我应该得到一个特定的对象“作为额外的” :
The NetworkInfo for the affected network is sent as an extra
和
the NetworkInfo for the new network is also passed as an extra.
我的问题是:在我的广播接收器中,我有这个事件触发:
public void onReceive(Context context, Intent intent) {
据我了解,我应该能够摆脱这两个“额外”的意图?
我怎样才能做到这一点?
我尝试intent
在鼠标悬停时以调试模式检查 Eclipse 中的对象(我在 Eclipse 中很新,所以我不知道在运行时检查变量的任何其他方法),但这并没有给我太多信息......