up vote 1 down vote favorite
share [g+] share [fb]

On Android settings, under Wireless controls->Mobile networks there is a setting "Use only 2G networks".

In the Android SDK reference, under android.telephony.TelephonyManager, there doesn't seem to be anything to control the network type.

What APIs does this setting actually call?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

It appears to call com.android.internal.telephony.Phone.setPreferredNetworkType(). Since it is "internal", it isn't available to applications via the SDK.

See:

http://android.git.kernel.org/?p=platform/packages/apps/Phone.git;a=blob;f=src/com/android/phone/Use2GOnlyCheckBoxPreference.java;hb=HEAD

link|improve this answer
Thanks. Makes a lot more sense now. – Jeremy Simon Feb 14 '10 at 22:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.