Find Your IP Address On Android Phone
On your Android phone, hit the menu button and go to Settings -> Wireless controls -> Wi-Fi settings. If you aren’t already connected to a Wi-Fi network, do so now.
In the networks list, again tap the network you are currently connected with. A pop-up with network specifics will appear, listing your current IP address at the bottom.
Incoming search terms for the article:
- android ip address
- android get ip
- android get ip address
- android phone ip address
- android check IP
- android emulator ip address
- samsung captivate ip address
- android emulator ip
- ip address android
- android find ip

Today Google Doodle Happy Republic Day of India
Today Google Doodle Nicholas Steno 374th Birthday
Search, plus Your World: new search engine Google for the Social
Apple iPad 3 Retina Display Leaked Photos
Today Google Doodle Happy New Year 2012
Apple Will Unveil Two New iPads With Better Battery Life in 2012
Apple iPad 3 Release Date February 24,2012 in honor of Steve Jobs?
Youtube Education: A new section for educational video
Google Doodle Wishes Merry Christmas and Happy Holidays
Vocal for iOS 5 allows you to control the Mac with Siri
Facebook Sponsored Ads Coming to News Feed in 2012
Firefox 9 Beta Release: News and links for download
Let it snow: Google Easter Egg brings snow falls down the page
Facebook Timeline for iPhone and Android phones
try a function like the following:
public static String getIPAddress()
{
String IPAddress=”";
try{
for(Enumeration en = NetworkInterface.getNetworkInterfaces(); en.hasMoreElements();){
NetworkInterface intf = en.nextElement();
for(Enumeration enumIpAddr = intf.getInetAddresses(); enumIpAddr.hasMoreElements();){
InetAddress inetAddress = enumIpAddr.nextElement();
if(!inetAddress.isLoopbackAddress()){
IPAddress += inetAddress.getHostAddress().toString() + “\n”;
}
}
}
if(IPAddress.length() == 0 )
IPAddress = “\n”;
}catch(SocketException ex){
if(IPAddress.length() == 0 )
IPAddress = “\n”;
}
return IPAddress;
}