1

レイアウトと api v2 キーで mapview を使用していますが、マップが表示されません。私の質問は... mapview で v2
キーを使用できますか、または mapfragment を使用する必要があります。

main.xml

<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
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/map_view"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"
    android:clickable="true" 
    android:enabled="true" 
    android:apiKey="my_apikey" />

</RelativeLayout>

マニフェスト.xml

  <?xml version="1.0" encoding="utf-8"?>

 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.example.fpa"
  android:versionCode="1"
  android:versionName="1.0">

<application android:icon="@drawable/icon" android:label="@string/app_name">

    <activity android:name="com.example.fpa.GMapsActivity"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <uses-library android:name="com.google.android.maps" />

    </application>

    <uses-permission android:name="android.permission.INTERNET"/>

</manifest> 

次のように出力を取得します。 ここに画像の説明を入力

4

2 に答える 2

0

このコードを使用して、target=Google Inc.:Google APIs:8 を設定します。

public class ActivityGoogleMap は MapActivity を拡張します {

@Override  
public void onCreate(Bundle savedInstanceState) {  
    super.onCreate(savedInstanceState);  
    setContentView(R.layout.main);  

    //to add zoom in and zoom out default buttons  
    MapView mapView = (MapView) findViewById(R.id.mapView); 
    mapView.setBuiltInZoomControls(true);  
}

}

于 2013-04-16T05:48:15.670 に答える