0

変数の緯度経度を Google マップの方向に渡したいですか? エラーを確認したり、新しい解決策を見つけたりするのに役立ちますか? これは私のJavaコードです:

public void onClickShowMap(View v) {
      String latitude = ((TextView) findViewById(R.id.latitude)).getText().toString();
      String longitude = ((TextView) findViewById(R.id.longitude)).getText().toString();

    Intent intent = new Intent(android.content.Intent.ACTION_VIEW,          
    Uri.parse("http://maps.google.com/maps?f=d&daddr="+latitude+","+longitude));
    startActivity(intent);
    }
4

1 に答える 1

0

このコードを使用して、

final Intent インテント = new Intent(Intent.ACTION_VIEW, Uri.parse(" http://maps.google.com/maps ?" + "saddr=" + lat + "," + lon + "&daddr=" + 緯度 + "," +経度)); Intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity"); ((アクティビティ) this).startActivity(意図);

于 2013-10-10T08:32:33.320 に答える