2011-02-09 81 views
0

我知道2G 3G變化如何知道與網絡類型:聽/註冊在Android

TelephonyManager telManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE); 
int network_type = telManager.getNetworkType(); 

但我要註冊當手機切換到2G到3G或3G到2G ...

無論如何要做到這一點?

感謝您的幫助。 Registers Jim

回答

6

您應該使用PhoneStateListener類。他包含方法onDataConnectionStateChanged (int state, int networkType)

希望它的幫助。

+0

正是我需要的!非常感謝! – jaumard 2011-02-09 12:50:20