我正在尝试将经度和纬度变量传递给 Google 地图片段的另一个活动。到目前为止,我已经设法做到了
Intent i = new Intent(Main.this, Main2.class);
i.putExtra(Double.toString(gettextLong), xLocation.getLongitude());
i.putExtra(Double.toString(gettextLat), xLocation.getLatitude());'
我如何在其他活动中收到它?