- 1、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
在本节中,你将继续在前一节的基础上构造。对AndroidLBS活动的主要修改就是传递坐标到Google地图中。你将使用Google地图来显示用户的当前位置。在main.xml文件中的唯一修改指出就是为MpaView增加一个布局。在目前版本的Android SDK中,MapView被建立为一个类View。可能在将来的版本中MapView会相当于这个布局。 view class=com.google.android.maps.MapViewandroid:id=@+id/myMapandroid:layout_width=wrap_contentandroid:layout_height=wrap_content/ 完成后的main.xml文件应当像这样: ?xml version=1.0 encoding=utf-8?LinearLayout xmlns:android=/apk/res/androidandroidrientation=verticalandroid:layout_width=fill_parentandroid:layout_height=fill_parentButtonandroid:id=@+id/gpsButtonandroid:layout_width=fill_parentandroid:layout_height=wrap_contentandroid:text=Where Am I/LinearLayout xmlns:android=/apk/res/androidandroid:layout_width=wrap_contentandroid:layout_height=wrap_contentTextViewandroid:id=@+id/latLabelandroid:layout_width=wrap_contentandroid:layout_height=wrap_contentandroid:text=Latitude: /TextViewandroid:id=@+id/latTextandroid:layout_width=wrap_contentandroid:layout_height=wrap_content//LinearLayoutLinearLayout xmlns:android=/apk/res/androidandroid:layout_width=wrap_contentandroid:layout_height=wrap_contentTextViewandroid:id=@+id/lngLabelandroid:layout_width=wrap_contentandroid:layout_height=wrap_contentandroid:text=Longitude: /TextViewandroid:id=@+id/lngTextandroid:layout_width=wrap_contentandroid:layout_height=wrap_content//LinearLayoutview class=com.google.android.maps.MapViewandroid:id=@+id/myMapandroid:layout_width=wrap_contentandroid:layout_height=wrap_content//LinearLayout 因为在这个活动中嵌入MapView,你需要改变类的定义。现在,主要类扩展了活动。但是要正确的使用Google MapView,你必须扩展MapActivity。因此,你需要输入MapActivity包装并且替换在头部的Activity 包装。输入下列包装: import com.google.android.maps.MapActivity;import com.google.android.maps.MapView;import com.google.android.maps.Point;import com.google.android.maps.MapController Point包装将被用于保留point的值,它就是展示地图坐标的,而MapController将你的point置于地图中央。这两个包装在使用MapView时非常的关键。现在准备增加建立地图并传递坐标的代码。首先,设置一个一个MapView,并且从main.xml文件中把它赋值到布局: MapView myMap = (MapView) findViewById(R.id.myMap);
文档评论(0)