In my Android app, in need to know if there is some dataActivity or not... I know that there is a enum called TelephonyManager.DATA_ACTIVITY_NONE.
How Can I get this value??
And (as bonus features ;)) there is some method to get the currently download/upload speed?
Here my code:
public static int getDeviceNetwokActivity(Context context){
TelephonyManager tm = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
return tm.listen(mPhoneStateListener, PhoneStateListener.LISTEN_DATA_CONNECTION_STATE
| PhoneStateListener.LISTEN_DATA_ACTIVITY);
}
Thanks a lot!
I found a solution with this code: