7

すべてのアプリのネットワーク トラフィック統計を取得しようとしています。デバイス内のすべてのアプリケーションのネットワーク トラフィックの合計を出力するだけです。コードは Android 4.4 および 5.1 デバイスでは正常に動作していますが、Android 6.0 デバイスではすべてのアプリケーションに対して常に 0 を返します。Android 6.0デバイスでこれが発生した理由を誰でも教えてください。

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    for(ApplicationInfo app : getPackageManager().getInstalledApplications(0)){
        long tx = TrafficStats.getUidTxBytes(app.uid);
        long rx = TrafficStats.getUidRxBytes(app.uid);
        long total = tx + rx;
        Log.e("total data of ", app.packageName + " = " + total);
    }
}

これが私のAndroidManifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.mts.trafficstatsdemo">

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>
4

2 に答える 2

1

ドキュメントによると:

N から始まると、これは呼び出し元の UID のトラフィック統計のみを報告します。プライバシー上の理由から、他のすべての UID に対して UNSUPPORTED を返します。他の UID に属する過去のネットワーク統計にアクセスするには、NetworkStatsManager を使用します。

于 2016-12-31T08:58:16.683 に答える