ユーザーが「地図で検索」ボタンをクリックするオプションがあるアプリケーションを作成しようとしています。ユーザーが「地図で検索」ボタンをクリックすると、Google マップを含む新しいアクティビティを開始したいと考えています。
このチュートリアルとマップショーを行いました。 http://mobiforge.com/developing/story/using-google-maps-android
ただし、このチュートリアルでは、メイン アクティビティでマップが表示されます。そのため、上記のチュートリアルのメイン アクティビティとまったく同じ ViewMap アクティビティを作成しました。これは、ViewMap アクティビティを開始する方法です。
findOnMapButton.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
// create an Intent to launch the ViewMap Activity
Intent viewMap = new Intent(ViewCourse.this, ViewMap.class);
startActivity(viewMap); // start the ViewContact Activity
}
});
ViewMap.java は次のとおりです。
package com.ijankovic.exammanager;
import android.os.Bundle;
import com.google.android.maps.GeoPoint;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapController;
import com.google.android.maps.MapView;
public class ViewMap extends MapActivity {
private MapView mapView;
private MapController mc;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.view_map);
mapView = (MapView) findViewById(R.id.mapview);
mc = mapView.getController();
String coordinates[] = {"31.567615", "74.360962"};
double lat = Double.parseDouble(coordinates[0]);
double lng = Double.parseDouble(coordinates[1]);
GeoPoint p = new GeoPoint(
(int) (lat * 1E6),
(int) (lng * 1E6));
mc.animateTo(p);
mc.setZoom(7);
mapView.invalidate();
}
@Override
protected boolean isRouteDisplayed() {
return false; // we are not displaying route information
}
}
ここに view_map.xml があります:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
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:apiKey="0jHJ3aWhSfOMZ1gjFMGc8xTf7mASBEtQcynZPOQ"
android:clickable="true"
android:enabled="true" />
</RelativeLayout>
ViewMap をメイン アクティビティとして配置すると、マップが表示されるため、API キーが確実に機能することはわかっています。ただし、ボタンがクリックされたときに呼び出されるアクティビティに配置しようとすると、マップは開きますが、すべてが灰色になり、タイルが読み込まれません。左下隅にGoogleのロゴがあります。
ここに私のマニフェストファイルがあります:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ijankovic.exammanager"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="10" />
<uses-permission android:name="android.premission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar" >
<activity
android:name="com.ijankovic.exammanager.MainActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".ViewCourse"
android:label="@string/app_name"></activity>
<activity android:name=".ViewMap"
android:label="@string/app_name"></activity>
<uses-library android:name="com.google.android.maps" />
</application>
</manifest>
問題:
Intent と ViewMap アクティビティの呼び出しに何か問題がありますか?
どんな提案でも大歓迎です。前もって感謝します!
編集:
この呼び出しでGoogleマップを取得できました:
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("google.navigation:q=New+York+NY));
startActivity(i);
ただし、これによりGoogleマップアプリが起動するようです。チュートリアルで示したように、アプリ内の Google マップではありません。