国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android Map新用法:MapFragment應用介紹

2020-04-11 12:36:27
字體:
來源:轉載
供稿:網友
1.MapView ,MapActivity 這種的局限在于,必須要繼承MapActivity,否則無法使用MapView。糾結就在于此。但是,最新官網上已經棄用了這糟粕的MapActivity。

Version 1 of the Google Maps Android API as been officially deprecated as of December 3rd, 2012. This means that from March 3rd, 2013 you will no longer be able to request an API key for this version. No new features will be added to Google Maps Android API v1. However, apps using v1 will continue to work on devices. Existing and new developers are encouraged to use Google Maps Android API v2.

2.MapFragment 這種的局限在于,必須要安裝Google Play Service ,也就是說必須是原生rom。而且sdk要在12以上。我蛋疼了。

3.WebView 貌似很輕松的集成進來,但沒有實踐就木有發言權。
第一種方式我先略過了。大家都知道。說第二種,第三種會了再補上
MapFragment是剛出的google官方包,要集成進來還是挺麻煩的。官網鏈接 https://developers.google.com/maps/documentation/android/start
首先要到google conlose 添加api access權限,拿到apikey,創建一個project ,然后到services里把Google Maps Android API v2打開,再到api access里把你的project的keystore的SHA1和包名填進去,拿到唯一的api key
打開sdk manager--在Extras里把Android Support Libaray 和 Google Play Services都安裝,lib和samples都在sdk_path/extra/google/google_play_services下。導入../lib_project作為自己項目的libaray
這一步完了之后在manifest.xml文件里添加權限和api key。代碼如下
復制代碼 代碼如下:

<permission
android:name="com.example.permission.MAPS_RECEIVE"
android:protectionLevel="signature"/>

com.example替換成自己project的package
復制代碼 代碼如下:

<uses-permission android:name="com.example.permission.MAPS_RECEIVE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
<!--My Location-->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<!--Maps API needs OpenGL ES2.0.-->
<uses-feature
android:glEsVersion="0x00020000"
android:required="true"/>

放在application聲明里
復制代碼 代碼如下:

<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="appkey"/>

在layout xml里加入MapFragment聲明
復制代碼 代碼如下:

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.MapFragment"/>

activity不變,extends Activity就可以了。 不需要繼承MapActivity了。
注意,debug狀態下是不可以顯示地圖的,一定要在正式簽名下map才會顯示出來。
install下應該就能看到map了

還有不懂的就多看看官方文檔把,介紹的很清楚。以上只是方便我自己記憶。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 长治县| 稷山县| 阜平县| 望都县| 绥滨县| 萍乡市| 恩平市| 西青区| 兴山县| 皮山县| 曲周县| 康保县| 安达市| 满城县| 荃湾区| 香港| 涟水县| 镇远县| 永昌县| 平泉县| 湟中县| 宁城县| 环江| 石楼县| 江西省| 云南省| 鄯善县| 保山市| 武义县| 原阳县| 安阳县| 虞城县| 常州市| 寿宁县| 博湖县| 青阳县| 仙桃市| 渭源县| 宁阳县| 杭州市| 尚志市|