首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

Android GoogleMap的放大缩小map控件的使用方法

2012-09-07 
Android GoogleMap的放大缩小地图控件的使用方法一 、首先在布局文件里要创建一个创建一个子布局用来显示控

Android GoogleMap的放大缩小地图控件的使用方法
一 、首先在布局文件里要创建一个创建一个子布局用来显示控件。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<com.google.android.maps.MapView
android:id="@+id/mapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true"
android:enabled="true"
android:apiKey="0bWQFlH0Ai3Cx65wHBX173_g4MSK11xFPuOqLpw" />

  <LinearLayout android:id="@+id/zoomControls"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_centerHorizontal="true"
  android:layout_alignParentBottom="true"
  />
</RelativeLayout>

二、然后就可以通过
LinearLayout linearLayout=(LinearLayout)findViewById(R.id.zoomControls);
linearLayout.addView((ZoomControls)mapView.getZoomControls())来实现

热点排行