热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

通过意图传递纬度/经度

如何解决《通过意图传递纬度/经度》经验,为你挑选了1个好方法。

我收集了不同的纬度和经度.我想知道我是否可以将它们设置为例如(String lat = {"9385853.0094","23123123.234")的数组字符串然后通过意图传递它们以便我可以使用lat/long在new中显示谷歌地图中的位置活动.



1> AniV..:

例如,您有两个名为Maps.java和Routes.java的类.

使用以下代码传递LatLng

LatLng fromPosition = new LatLng(9385853.0094, 23123123.234 );
LatLng toPosition = new LatLng(11.145315551, 99.333455333);

Bundle args = new Bundle();
args.putParcelable("from_position", fromPosition);
args.putParcelable("to_position", toPosition);

i.putExtra("bundle", args);

Intent i= new Intent(Maps.this, Routes.class);
        startActivity(i);

在接收端使用以下代码

Bundle bundle = getIntent().getParcelableExtra("bundle");
LatLng fromPosition = bundle.getParcelable("from_position");
LatLng toPosition = bundle.getParcelable("to_position");

希望这可以帮助!


推荐阅读
author-avatar
拍友2502881913
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有