2

我编写了一个简单的应用程序,当网络状态发生变化时,atm 只会弹出一条 toast 消息。这在模拟器上完美运行,但我已经在 2 部不同的 android 手机上尝试过,似乎广播接收器永远不会触发这些事件。这是我的广播接收器:

public class PhoneStateReceiver extends BroadcastReceiver
{
  @Override
  public void onReceive( Context context, Intent intent )
  {       
      Toast.makeText( context, "Hi", Toast.LENGTH_SHORT ).show();     
  }
}

这是我的清单文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
..
    <uses-sdk android:minSdkVersion="8" />

    <application
..
        <receiver android:name=".PhoneStateReceiver" android:enabled="true">
            <intent-filter>
                <action android:name="android.net.conn.CONNECTIVITY_CHANGE"></action>
            </intent-filter>
        </receiver>
..
    </application>
<!-- Needed to check when the network connection changes -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
</manifest>

任何人都知道为什么会发生这种情况或我可能做错了什么?

谢谢,罗伯

4

1 回答 1

0

我在您的代码中找不到任何明显不正确的内容,所以这是尽力而为。

在您的清单中放置块之后

PVS

于 2012-04-14T16:28:05.260 回答