1

アプリのアクティビティ内にマップを表示しようとしていますが、Android Studio 0.3.1 を使用していることに注意してください。Android Studio での切り替えが絶対に不可能でない限り、Eclipse への切り替えはオプションではありません。

私はそれを行う方法について複数のチュートリアルに従いました。最新のものは、Google Developers の 1 つとVogella の 1での 2 回目の試行であり、 thisおよびthisなどの同様の質問もありますが、これらに限定されません。上記のチュートリアルに従うと、実行時に次のメッセージが表示されてクラッシュするだけです。

E/AndroidRuntime﹕ FATAL EXCEPTION: main java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.maptestproject/com.example.maptestproject.MainActivity}: android.view.InflateException: Binary XML file line #69: Error inflatingクラスフラグメント

当然のことながら、Google Play API で見つかったサンプルも確認しようとしましたが、Android Studio で実行できません。起動前に Make オプションがある場合、または「APK パスそれを削除すると、指定されていません」(いくつかの場所で提案されているように)。

現在、私のテスト プロジェクトは次のとおりです。MY_API_KEY は、実際のプロジェクトの実際のAPI キーに置き換えられます。

マニフェスト:

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.example.maptestproject"
        android:versionCode="1"
        android:versionName="1.0" >
        <uses-sdk
            android:minSdkVersion="17"
            android:targetSdkVersion="17" />
        <permission
            android:name="com.example.maptestproject.maps.permission.MAPS_RECEIVE"
            android:protectionLevel="signature" />

        <permission
    android:protectionLevel="signature" />
        <uses-feature
            android:glEsVersion="0x00020000"
            android:required="true"/>
        <uses-permission android:name="android.permission.INTERNET"/>
        <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
        <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
        <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
        <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
        <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>

        <application
            android:allowBackup="true"
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name"
            android:theme="@style/AppTheme" >
            <activity
                android:name="com.example.maptestproject.MainActivity"
                android:label="@string/app_name" >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
            <meta-data
                android:name="com.google.android.maps.v2.MY_API_KEY"
                android:value="MY_API_KEY"/>
        </application>
    </manifest>

MainActivity.java:

    package com.example.maptestproject;
    import android.support.v4.app.FragmentActivity;
    import android.os.Bundle;
    import com.google.android.gms.maps.CameraUpdateFactory;
    import com.google.android.gms.maps.GoogleMap;
    import com.google.android.gms.maps.MapFragment;
    import com.google.android.gms.maps.model.BitmapDescriptorFactory;
    import com.google.android.gms.maps.model.LatLng;
    import com.google.android.gms.maps.model.Marker;
    import com.google.android.gms.maps.model.MarkerOptions;

    public class MainActivity extends FragmentActivity {
        static final LatLng HAMBURG = new LatLng(53.558, 9.927);
        static final LatLng KIEL = new LatLng(53.551, 9.993);
        private GoogleMap map;

        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
            map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
            Marker hamburg = map.addMarker(new MarkerOptions().position(HAMBURG).title("Hamburg"));
            Marker kiel = map.addMarker(new MarkerOptions()
            .position(KIEL)
            .title("Kiel")
            .snippet("Kiel is cool")
            .icon(BitmapDescriptorFactory.fromResource(R.drawable.ic_launcher)));

            map.moveCamera(CameraUpdateFactory.newLatLngZoom(HAMBURG, 15));
            map.animateCamera(CameraUpdateFactory.zoomTo(10), 2000, null);
            }
    }

activity_main.xml:

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity" >

        <fragment
            android:id="@+id/map"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            class="com.google.android.gms.maps.MapFragment" />

    </RelativeLayout>

もう少し具体的に言うと、アプリは特定の場所を表示し、ユーザーの現在の場所からマークされた場所までのパスをトレースする必要があります (または、Google マップを使用して Web ビューに送信するか、デバイスの GPS を開くなど、より簡単な方法を使用します)。 、しかし、物事を機能させるための入力は大歓迎です。

非常に長い質問で申し訳ありませんが、これは 2 日近く私を悩ませてきたものです。

4

0 に答える 0