-1

I want to check if data connectivity(EDGE) is transferring the data or not in android?

Rowland Shaw
  • 37,700
  • 14
  • 97
  • 166
Praveen Kumar
  • 89
  • 2
  • 8

2 Answers2

0

use the getDataActivity() of TelephonyManager If its value is non-zero then there's network traffic.

Philippe Girolami
  • 1,876
  • 1
  • 13
  • 15
0

TelephonyManager tm = (TelephonyManager) getSystemService(TELEPHONY_SERVICE);

sique
  • 241
  • 1
  • 2
  • 12