ANDROID_MARS学习笔记_S03_007_GoogleMap1
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ANDROID_MARS学习笔记_S03_007_GoogleMap1相关的知识,希望对你有一定的参考价值。
一、简介
二、代码
1.xml
(1)main.xml
1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:orientation="vertical" 4 android:layout_width="fill_parent" 5 android:layout_height="fill_parent" 6 > 7 <com.google.android.maps.MapView 8 android:layout_width="fill_parent" 9 android:layout_height="fill_parent" 10 android:enabled="true" 11 android:clickable="true" 12 android:apiKey="0pkT0EYxPi2VZ5beDaJ0g08aCtWGmKTFnOvj6iw" 13 /> 14 </LinearLayout>
(2)AndroidManifest.xml
1 <uses-permission android:name="android.permission.INTERNET" />
2.java
(1)MainActivity.java
1 package com.se7en; 2 3 import android.os.Bundle; 4 5 import com.google.android.maps.MapActivity; 6 import com.se7en.R; 7 8 /** 9 * 注意要在AndroidManifest.xml文件中添加库及权限设置 10 * @author se7en 11 * 12 */ 13 public class MainActivity extends MapActivity { 14 /** Called when the activity is first created. */ 15 @Override 16 public void onCreate(Bundle savedInstanceState) { 17 super.onCreate(savedInstanceState); 18 setContentView(R.layout.main); 19 } 20 21 @Override 22 protected boolean isRouteDisplayed() { 23 // TODO Auto-generated method stub 24 return false; 25 } 26 27 }
以上是关于ANDROID_MARS学习笔记_S03_007_GoogleMap1的主要内容,如果未能解决你的问题,请参考以下文章
ANDROID_MARS学习笔记_S01原始版_007_Handler及线程的简单使用
ANDROID_MARS学习笔记_S04_007_从服务器获取微博数据时间线
ANDROID_MARS学习笔记_S01_007Linear_layout嵌套与layout_weight的设置
ANDROID_MARS学习笔记_S03_001_获取蓝牙匹配列表
ANDROID_MARS学习笔记_S03_009_GOOGLEMAP3
ANDROID_MARS学习笔记_S03_004_getAllProvidersLOCATIONLISTENERgetBestProvider