0

Google マップを使用して Android アプリを作成しています。最初に、いくつかの Google マップ コードを使用して別のプロジェクトを作成しました。このアプリは正常に動作します。次に、メイン アクティビティに 2 つのアクティビティを含む新しいアプリを作成しました。ボタンがあり、それを押すと 2 番目のアクティビティが開始されます。2 番目のアクティビティでは、最初のプロジェクトのコードに小さな変更を加えて、正しいパケット名などを取得しました。

アプリを実行してボタンを押すと、2 番目のアクティビティが開始されますが、ズーム ボタンのある空白のマップが表示されます。ログを確認したところ、Google サーバーとの接続が確立されたというエラーが表示されました。マニフェストに入れたAPIキーを確認しましたが、これは大丈夫でした。同じ結果で新しいものを生成しました。私が間違っていることや忘れていることは何ですか?

以下は、マニフェスト ファイルと 2 番目のアクティビティ コードです。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.datoeter.locater"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />

 <permission
    android:name="com.datoeter.locator.permission.MAPS_RECEIVE"
    android:protectionLevel="signature" />

<uses-feature
    android:glEsVersion="0x00020000"
    android:required="true" />

// Permissions that are needed 
<uses-permission android:name="com.datoeter.locator.permission.MAPS_RECEIVE" />
<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.datoeter.locater.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>
    <activity
        android:name="com.datoeter.locater.TrackActivity"
        android:label="@string/title_activity_track" >
    </activity>

    // API information
     <meta-data
        android:name="com.google.android.maps.v2.API_KEY"
        android:value="Omitted API key" />
</application>

</manifest>

そしてアクティビティコード

   package com.datoeter.locater;

import android.app.Dialog;
import android.location.Criteria;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.view.Menu;

import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.GooglePlayServicesUtil;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.SupportMapFragment;
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;
import com.google.android.gms.maps.model.Polyline;
import com.google.android.gms.maps.model.PolylineOptions;

public class TrackActivity extends FragmentActivity implements LocationListener {

    //Google map object
    GoogleMap Gmap;

    boolean FirstTime = true;

    //Location variables
    LatLng OldLoc;
    LatLng NewLoc;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_track);

        // Getting Google Play availability status
        int status = GooglePlayServicesUtil.isGooglePlayServicesAvailable(getBaseContext());

        // Showing status
        if(status!=ConnectionResult.SUCCESS){ // Google Play Services are not available

            int requestCode = 10;
            Dialog dialog = GooglePlayServicesUtil.getErrorDialog(status, this, requestCode);
            dialog.show();           
        }
        else
        {
            // Getting reference to the SupportMapFragment of activity_main.xml
            SupportMapFragment supportmapfragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map);

            // Getting GoogleMap object from the fragment
            Gmap = supportmapfragment.getMap();

            // Enabling MyLocation Layer of Google Map
            Gmap.setMyLocationEnabled(true);    

             // Getting LocationManager object from System Service LOCATION_SERVICE
            LocationManager locationManager = (LocationManager) getSystemService(LOCATION_SERVICE);

            // Creating a criteria object to retrieve provider
            Criteria criteria = new Criteria();

            // Getting the name of the best provider
            String provider = locationManager.getBestProvider(criteria, true);

            // Getting Current Location
            Location location = locationManager.getLastKnownLocation(provider);


            if(location!=null){
                onLocationChanged(location);
            }

            locationManager.requestLocationUpdates(provider, 10000, 0, this);
        }
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    @Override
    public void onLocationChanged(Location location) {

        // Getting latitude of the current location
        double latitude = location.getLatitude();

        // Getting longitude of the current location
        double longitude = location.getLongitude();     

        // Creating a LatLng object for the current location
        LatLng latLng = new LatLng(latitude, longitude);

        if(FirstTime){
            // Get starting position
            OldLoc = latLng;

            // Add start marker
            Marker Start = Gmap.addMarker(new MarkerOptions()
                        .position(OldLoc)
                        .title("Start")
                        .snippet("You started here")
                        .icon(BitmapDescriptorFactory
                        .fromResource(R.drawable.ic_launcher)));

            FirstTime = false;  
        }
        else{

            // Get new position
            NewLoc = latLng;

            // Draw route (line) from last location to new location on map
             Polyline Route = Gmap.addPolyline(new PolylineOptions()
                .add(OldLoc, 
                     NewLoc)
                .geodesic(false));

                // New position will be old position for next change
                OldLoc = NewLoc;
        }


        // Showing the current location in Google Map
        Gmap.moveCamera(CameraUpdateFactory.newLatLng(latLng));

        // Zoom in the Google Map
        Gmap.animateCamera(CameraUpdateFactory.zoomTo(15));     

    }

    @Override
    public void onProviderDisabled(String provider) {
        // TODO Auto-generated method stub

    }

    @Override
    public void onProviderEnabled(String provider) {
        // TODO Auto-generated method stub

    }

    @Override
    public void onStatusChanged(String provider, int status, Bundle extras) {
        // TODO Auto-generated method stub

    }
}
4

3 に答える 3

0

本当にばかげたタイプミスでした。それがエラーでした。ロケータのスペルが間違っています。これで、コードは問題なく動作します。すべての助けをありがとう。

Genymotionエミュレーターを使用しています。Eclipse バンドルに付属するエミュレーターは、OpenGL ES V2 をサポートしていません。私は最初にこの問題を抱えていて、多くの人がこの問題を抱えている、または抱えていたことを読んだので、これについて言及したいと思います.

すべての助けをありがとう。

于 2013-08-23T12:43:39.330 に答える
0

これを実行しているデバイスに Google マップ アプリがインストールされていることを再確認しましたか? あなたの問題は、この問題と非常によく似ています。

Google マップ Android API V2 は、Google マップがデバイスにインストールされているかどうかを確認します

于 2013-08-22T16:01:49.160 に答える
0

Android SDK Manager で Google Play Services を更新し、それを Eclipse にインポートして使用します。新しい更新が含まれているため、これらの行をマニフェスト ファイルの要素内に追加します。

<meta-data
    android:name="com.google.android.gms.version"
    android:value="@integer/google_play_services_version" />

デバイスからアプリをアンインストールし、新しいバージョンをインストールします。

于 2013-11-26T07:14:11.987 に答える