(グーグルとこのサイトによる)方法を探すのに何時間も費やしましたが、AndroidのTextView自身のIPアドレスに書き込むための正しいコードを見つけることができません。
多くのコードを試しましたが、誰も実行しませんでした。
AndroidのIPアドレスを取得してTextViewに配置する正しい方法は何ですか?
ありがとう。
public class MainActivity extends Activity {
private TextView textView1;
private String tag;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
textView1 =(TextView)findViewById(R.id.textView1);
getLocalIpAddress();
String ip = getLocalIpAddress();
textView1.setText("IP:"+ip);
}
public String getLocalIpAddress()
{
try
{
for (Enumeration<NetworkInterface> en = NetworkInterface.getNetworkInterfaces(); en.hasMoreElements();)
{
NetworkInterface intf = en.nextElement();
for (Enumeration<InetAddress> enumIpAddr = intf.getInetAddresses(); enumIpAddr.hasMoreElements();)
{
InetAddress inetAddress = enumIpAddr.nextElement();
if (!inetAddress.isLoopbackAddress())
{
return inetAddress.getHostAddress().toString();
}
}
}
}
catch (SocketException ex)
{
Log.e(tag, ex.toString());
}
return "";
}
}
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="19dp"
android:text="TextView" />