i want know the current internet connection on device??

in android i found the two property to know network type like..

ConnectivityManager.TYPE_WIFI

ConnectivityManager.TYPE_MOBILE

but how to know 3G network??

pls help me out

Thanks in Advance!

link|improve this question

54% accept rate
feedback

3 Answers

try to get subType() with this snippet:

NetworkInfo info = mConnectivity.getActiveNetworkInfo();
int netSubType = info.getSubtype();

then if netSubType is TelephonyManager.NETWORK_TYPE_UMTS, then its a 3G network

Updated: What's 'info' here

link|improve this answer
dude can you tell me what is that info , i tried ConnectivityManager its not working.. – Ganapathy Apr 8 '11 at 10:30
Sorry, forgot to add that. see the updated answer – Sheikh Aman Apr 8 '11 at 10:43
thank man it's working.... – milind Apr 8 '11 at 12:52
feedback
up vote 3 down vote accepted

now i can know 3 type of network as follow..........

ConnectivityManager connec = (ConnectivityManager) activity.getSystemService(Context.CONNECTIVITY_SERVICE);

android.net.NetworkInfo wifi = connec.getNetworkInfo(ConnectivityManager.TYPE_WIFI);

android.net.NetworkInfo mobile = connec.getNetworkInfo(ConnectivityManager.TYPE_MOBILE);

NetworkInfo info = connec.getActiveNetworkInfo();

int netSubType = info.getSubtype();e

            if (wifi.isConnected()) 
            {

             wifi is connected

            }
            else if (mobile.isConnected())
            {
                if(netSubType == TelephonyManager.NETWORK_TYPE_UMTS)
                {   
                       3G is connected

                }
                else
                {
                      GPRS is connected

                }


            }
link|improve this answer
feedback

As far as I have used 3G is coming under ConnectivityManager.TYPE_MOBILE only.

If you are using emulator then you can press F8 to connect and disconnect 3G.

It also disconnects GPRS. for both ConnectivityManager.TYPE_MOBILE is used.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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