2017-02-20 14 views
-1

ブロードキャストレシーバで接続が変更され、アンドロイドNの下で動作するすべてのデバイスで正常に動作しますが、アンドロイドNでは動作しません。 Nの中にあるかどうか。なぜこれが起こっているのか誰にも分かりませんか?NetwakeorkブロードキャストレシーバがAndroid Nで動作していないN

マニフェストファイル

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
package="com.example.admin.movies"> 
<uses-permission android:name="android.permission.INTERNET" /> 
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 
<application 
    android:name=".MovieSingleton" 
    android:allowBackup="true" 
    android:icon="@mipmap/ic_launcher" 
    android:label="@string/app_name" 
    android:supportsRtl="true" 
    android:theme="@style/AppTheme"> 
    <activity android:name=".SplashActivity"> 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 
      <category android:name="android.intent.category.LAUNCHER" /> 
     </intent-filter> 
    </activity> 
    <receiver 
     android:name=".NetworkBroadcastReceiver" 
     android:exported="false" 
     android:enabled="true"> 
     <intent-filter> 
      <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> 
     </intent-filter> 
    </receiver> 
</application> 

ここで多くのアプリケーションがこのブロードキャストを受信するように登録するので、単一のネットワークスイッチは、私の放送受信

public class NetworkBroadcastReceiver extends BroadcastReceiver { 

private static final String TAG = NetworkBroadcastReceiver.class.getSimpleName(); 

public NetworkBroadcastReceiver() { 

} 

@Override 
public void onReceive(Context context, Intent intent) { 
    Log.d(TAG, "onReceive: network change"); 
    if(isOnline(context)){ 
     Log.d(TAG, "onReceive: connected"); 
    } else { 
     Log.d(TAG, "onReceive: not connected"); 
    } 
} 


public boolean isOnline(Context mContext) { 
    ConnectivityManager connMgr = (ConnectivityManager) 
      mContext.getSystemService(Context.CONNECTIVITY_SERVICE); 
    NetworkInfo networkInfo = connMgr.getActiveNetworkInfo(); 
    return (networkInfo != null && networkInfo.isConnected()); 
} 

}

+2

https://developer.android.com/topic/performance/background-optimization.html https://developer.android.com/about/versions/nougat/android-7.0-changes.html#bg-opt – CommonsWare

答えて

0

できていますそれらをすべて目覚めさせる放送を一度に処理する。

Android Nougatでは、BroadcastReceiverをContext.registerReceiver()に登録する必要があります。

この変更は、Android 7.0のバックグラウンド最適化とパフォーマンスの向上の一環です。

関連する問題