要使用Android Maps API,首先需要申请一个API Key。
官方文件网址
官方文件网址
http://developer.android.com/guide/topics/location/index.html
如何取得API Key
http://developer.android.com/guide/topics/location/geo/mapkey.html
如何取得API Key
http://developer.android.com/guide/topics/location/geo/mapkey.html
首先,我们要找到SDK tools的debug.keystore文件
XP:C:/Documents and Settings/<User>/Local Settings/Application Data/Android/debug.keystore
Vista:C:/Users/<User>/AppData/Local/Android/debug.keystore
OS/Linux: ~/.android/debug.keystore
XP:C:/Documents and Settings/<User>/Local Settings/Application Data/Android/debug.keystore
Vista:C:/Users/<User>/AppData/Local/Android/debug.keystore
OS/Linux: ~/.android/debug.keystore
在Dos模式下输入如下指令获得MD5码:
keytool -list -alias androiddebugkey -keystore “文件路径” -storepass android -keypass android。
keytool -list -alias androiddebugkey -keystore “文件路径” -storepass android -keypass android。
或者输入keytool -list -keystore debug.keystore,然后输入密码:android。
其中“文件路径”输入刚才的debug.keystore文件路径
其中“文件路径”输入刚才的debug.keystore文件路径
获取MD5过程如下图:
使用时,在代码中加入
android:apiKey=“申请到的Key值”
例: