//Show the current coordinates (Convert to String and round off - 6 decimal places)
String printLat = new DecimalFormat("0.######").format((double)currentLat);
String printLon = new DecimalFormat("0.######").format((double)currentLon);
AlertDialog alert = new AlertDialog.Builder(Main.this).create();
alert.setTitle("Current Location:");
alert.setMessage("Latitude: " + printLat+ "\n" + "Longitude: " + printLon);
alert.setButton("Close", new DialogInterface.OnClickListener()
{
public void onClick(DialogInterface arg0, int arg1)
{
// TODO Auto-generated method stub
//Alert Dialog won't work without a listener
//Do nothing (This will simply close your alert dialog)
}
});
alert.show();
这是我主要课程的一部分。
我应该从我的模拟器中获取我发送的内容。但我没有得到准确的值,而是得到了这个:
纬度 - 14.069315 经度 - 121.323738
但我发送了这个(从我的模拟器控制)纬度 - 14.069316 经度 - 121.323739
这只是一个十进制数和一个小值的问题,但我担心这是否会对我的应用程序上出现的内容产生很大影响,因为我将使用这些值在我的谷歌地图上添加标记。
有什么建议么?