To get the active network type, one must use the ConnectivityManager together with the NetworkInfo class. However, by using the NetworkInfo class, I can only determine if the active network is TYPE_WIFI or TYPE_MOBILE. I know how to get the mac address of the WiFi interface. How can I get the mac address of the active network interface of the user if he's not using WiFi?

Below is a snippet of my code:

String macAddress;
switch(networkInfo.getType())
{
    case ConnectivityManager.TYPE_WIFI:
    WiFiManager wifiManager = (WiFiManager)getSystemService(Context.WIFI_SERVICE);
        WifiInfo wifiInfo = wifiManager.getConnectionInfo();
        macAddress = wifiInfo.getMacAddress(); //get mac address of the wifi interface
        break;
    default:
        //How do I get the mac address if the user is not using a wiFi?
}
link|improve this question

74% accept rate
1  
Only WiFi uses MAC address. Refer to this and [this] (stackoverflow.com/questions/6191832/…) – androidnoob Nov 2 '11 at 1:38
Only WiFi uses MAC address. Refer to stackoverflow.com/questions/6232556/… and stackoverflow.com/questions/6191832/… – androidnoob Nov 2 '11 at 1:41
@androidnoob: Thank you for the link! I don't know that only WiFi uses MAC address in Android. – Arci Nov 4 '11 at 7:30
No problem =) Happy coding! – androidnoob Nov 4 '11 at 7:37
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.