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

Facebook IPO $38 for per share: The social network goes public
Rovio’s next titled Amazing Alex after Angry Birds: Release Date and Features
Microsoft Unveils New Bing Search Engine to Challenge Google
Today Google Doodle Howard Carter’s 138th Birthday
Apple HDTV Features FaceTime and Siri: Data Output and Prices
GIMP 2.8 Image Software Adds Single-Window Interface: Download and Installation
Apple WWDC 2012 Event Scheduled to June 11: iPhone OS 6, iOS 6, iCloud, OS X, Siri and Macs
Google Drive has arrived: How does the web space between free and paid
Adobe Photoshop CS6 and Creative Cloud Official: Prices Monthly or Annual
Today Google Doodle Robert Doisneau's 100th Birthday
Facebook Buys Instagram for $1 Billion: The photo sharing service for Android
Google Project Glass Augmented Reality Official: Expected Features
Call of Duty: Black Ops 2 Release Date Leaked as November 6th. What's new
Google Go 1 final version programming language: New Products
Google now Allows 3D Graphing Mathematical Functions in Search
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;
}