我正在尝试将经度和纬度变量传递到Google地图片段的另一个活动中。到目前为止,我已设法做到这一点
Intent i = new Intent(Main.this, Main2.class);
i.putExtra(Double.toString(gettextLong), xLocation.getLongitude());
i.putExtra(Double.toString(gettextLat), xLocation.getLatitude());'
我如何在其他活动中收到它?
答案 0 :(得分:1)
尝试:
Intent i = new Intent(Main.this, Main2.class);
i.putExtra("lon", xLocation.getLongitude());
i.putExtra("lat", xLocation.getLatitude());
像这样:
int lat = getIntent().getExtras().getDouble("lat");
int lon = getIntent().getExtras().getDouble("lon");
答案 1 :(得分:1)
提供相关的密钥,例如
Intent i = new Intent(Main.this, Main2.class);
i.putExtra("longitude", xLocation.getLongitude());
i.putExtra("latitude", xLocation.getLatitude());
和Main2活动
Bundle extras = getIntent().getExtras();
if(extras !=null && extras.getDouble("latitude") != null && extras.getDouble("longitude") != null) {
double lat = extras.getDouble("latitude");
double lng = extras.getDouble("longitude");
}
答案 2 :(得分:0)
在您的第二项活动中使用getIntent()和getDoubleExtra()。但以不同的方式传递它。 putExtra中的第一个参数应该是一些String,但你必须知道他,需要稍后在第二个活动中使用它。像:
public static final String FIRST = "firstArgument";
i.putExtra(FIRST, xLocation.getLongitude());
在Main2中:
double i = getIntent().getDoubleExtra(Main.FIRST, 0);