すべての夕方、私はそれを行うためのいくつかの方法を持っています...
まず、次のように、BroadcasrReceiver を拡張するクラスを作成する必要があります。
マニフェスト定義:
<receiver android:name=".core.CoreReceiver" android:enabled="true" android:exported="false">
<intent-filter>
<action android:name="android.net.ConnectivityManager.CONNECTIVITY_ACTION" />
<action android:name="android.net.wifi.STATE_CHANGE" />
</intent-filter>
</receiver>
コード:
/**
* @author me
*/
public class CoreReceiver extends BroadcastReceiver {
public void onReceive(Context context, Intent intent) {
if (Constants.phone == null) {
// Receive [network] event
Constants.phone=new PhoneListen(context);
TelephonyManager telephony=(TelephonyManager)
context.getSystemService(Context.TELEPHONY_SERVICE);
telephony.listen(Constants.phone, PhoneStateListener.LISTEN_DATA_CONNECTION_STATE);
}
WifiManager wifi=(WifiManager)context.getSystemService(Context.WIFI_SERVICE);
boolean b=wifi.isWifiEnabled();
if (Constants.STATUS_WIFI != b) {
// WiFi status changed...
}
}
}
そして、以下の電話統計リスナー...
public class PhoneListen extends PhoneStateListener {
private Context context;
public PhoneListen(Context c) {
context=c;
}
@Override
public void onDataConnectionStateChanged(int state) {
switch(state) {
case TelephonyManager.DATA_DISCONNECTED:// 3G
//3G has been turned OFF
break;
case TelephonyManager.DATA_CONNECTING:// 3G
//3G is connecting
break;
case TelephonyManager.DATA_CONNECTED:// 3G
//3G has turned ON
break;
}
}
}
最後に、これが私のロジックです
- カウントを SQLite DB に収集します。
- 3G がオンの場合にのみ、TrafficStats を介してすべてのアプリ ネットワーク使用量を 1 分ごとに収集します。
- 3G がオフの場合は、収集を停止します。
- 3G と WiFi の両方がオンになっている場合は、収集を停止します。
私が知っているように、3G と WiFi の両方が利用可能な場合、ネットワーク トラフィックは WiFi のみを経由します。