0

で座標を表示できます(TextView)findViewById(R.id.Display)).setText(String.valueOf(location.getLatitude())); が、(location.getLatitude()) の値を変数「x」に代入するにはどうすればよいのでしょうか?

double x;

x = ???????? valueOf(location.getLatitude())
4

2 に答える 2

0
getLatitude() already return double type. So you do not have to convert them. 

これを試して

double longitude = location.getLongitude();
double latitude = location.getLatitude();
于 2013-04-07T16:41:29.633 に答える