私の質問は、ネットワークが切断された時間を調べる方法はありますか? いつオフになりますか、またはいつオンモードになりますか?
ご提案とご協力をよろしくお願いいたします。
android.net.conn.CONNECTIVITY_CHANGEアクションを使用してsをBroadcastReceiver
リッスンするを作成できます。Intent
public class ConnectivityListener extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
// There is action occured with network.
ConnectivityManager cm = (ConnectivityManager)context.getSystemService(
Context.CONNECTIVITY_SERVICE);
// query connectivity manager for network state.
}
}
AndroidManifest.xmlでこのレシーバーを宣言することを忘れないでください。
<receiver android:name=".ConnectionChangeReceiver">
<intent-filter>
<action android:name="android.net.conn.CONNECTIVITY_CHANGE"/>
</intent-filter>
</receiver>