0

私のプログラムは次のことができるはずです:

  1. マップ ビューを変更する
  2. 電話の現在の場所にズームインします
  3. マーカーを追加する
  4. 緯度と経度の値のアラートを表示する

GPS_PROVIDER を使用すると、機能 1 ~ 4 がエミュレーターで機能します (緯度と経度の値を手動で入力するため)。しかし、apk ファイルを作成すると、2-4 の機能が動作しません。

これが私のクラスです。

package com.locator.map;

import java.text.DecimalFormat;
import java.util.List;

import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.graphics.drawable.Drawable;
import android.location.Criteria;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;

import com.google.android.maps.GeoPoint;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapController;
import com.google.android.maps.MapView;
import com.google.android.maps.Overlay;
import com.google.android.maps.OverlayItem;

public class Main extends MapActivity
{
    MapController controller;
    double currentLat;
    double currentLon;
    LocationManager manager;
    boolean locationChanged = false;
    Button retrieveLocationButton, toggleViewButton;
    boolean streetview = false;
    Drawable d;
    List<Overlay> overlaylist;
    MapView map;
    Criteria criteria;
    String bestProvider;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);      
        map = (MapView) findViewById (R.id.googleMap);       
        map.setBuiltInZoomControls(true);
        map.setSatellite(true);
        controller = map.getController();


        criteria = new Criteria();
        criteria.setAccuracy(Criteria.ACCURACY_FINE);
        manager = (LocationManager) this.getSystemService (Context.LOCATION_SERVICE);        
        bestProvider = manager.getBestProvider(criteria, true);

        retrieveLocationButton = (Button) findViewById(R.id.retrieveLocation);
        toggleViewButton = (Button) findViewById(R.id.changeView);

        retrieveLocationButton.setOnClickListener(new OnClickListener()
        {      
                public void onClick(View v)
                {
                    showCurrentLocation();
                }
        });        

        toggleViewButton.setOnClickListener(new OnClickListener()
        {
            public void onClick(View v)
            {
                if (streetview == false)
                {
                    map.setSatellite(false);
                    map.setStreetView(true);
                    streetview=true;
                }
                else if (streetview == true)
                {
                    map.setStreetView(false);
                    map.setSatellite(true);
                    streetview=false;
                }
            }           
        });
        LocationListener listener = new LocationListener()
        {
            public void onLocationChanged(Location location)
            {
                // TODO Auto-generated method stub

                //Retrieve the current GPS coordinates
                currentLat = location.getLatitude();
                currentLon = location.getLongitude();

                locationChanged = true;
            }

            public void onProviderDisabled(String provider)
            {
                // TODO Auto-generated method stub
                Toast.makeText(getBaseContext(), "Your GPS services are not activated.", Toast.LENGTH_LONG).show();
            }

            public void onProviderEnabled(String provider)
            {
                // TODO Auto-generated method stub
                Toast.makeText(getBaseContext(), "Your GPS services are now activated.", Toast.LENGTH_LONG).show();
            }

            public void onStatusChanged(String provider, int status, Bundle extras)
            {
                // TODO Auto-generated method stub
                Toast.makeText(getBaseContext(), "Your GPS service provider is changed.", Toast.LENGTH_LONG).show();
            }

        };

        manager.requestLocationUpdates(bestProvider, 1000, 1, listener); //--> To update current location (coordinates [latitude & longitude]).       

    }

    protected void showCurrentLocation()
    {
        // TODO Auto-generated method stub

        //If location is changed or updated - Zoom in to current location, add a marker and show a dialog with current coordinates.
        if (locationChanged == true)
        {
            //Set the map's view and zoom level animation
            GeoPoint currentLocation = new GeoPoint ((int) (currentLat * 1E6), (int) (currentLon * 1E6));

            controller.setCenter(currentLocation);
            controller.setZoom(15);

            //Show the current coordinates (Convert to String and round off - 6 decimal places)
            String printLat = new DecimalFormat("0.######").format((double)currentLat);
            String printLon = new DecimalFormat("0.######").format((double)currentLon);

            AlertDialog alert = new AlertDialog.Builder(Main.this).create();
            alert.setTitle("Current Location:");
            alert.setMessage("Latitude: " + printLat + "\n" + "Longitude: " + printLon);
            alert.setButton("Close", new DialogInterface.OnClickListener()
            {               
                public void onClick(DialogInterface arg0, int arg1)
                {
                    // TODO Auto-generated method stub
                    //Alert Dialog won't work without a listener
                    //Do nothing (This will simply close your alert dialog)
                }
            });     
            alert.show();

            //Add a marker
            overlaylist = map.getOverlays();
            d = getResources().getDrawable(R.drawable.ic_launcher);         
            CustomPinpoint marker = new CustomPinpoint (d, Main.this);          
            OverlayItem overlayitem = new OverlayItem (currentLocation, "1st String", "2nd String");
            marker.insertPinpoint(overlayitem);
            overlaylist.add(marker);    
        }
    }

    @Override
    protected boolean isRouteDisplayed()
    {
        // TODO Auto-generated method stub
        return false;
    }
}

NETWORK_PROVIDER も使用してみました。私の電話ではすべてが機能しますが、正確な緯度と経度の値が返されません。マーカーを追加しますが、実際の場所から約 1 キロ離れています。

NETWORK_PROVIDER を使用した私のクラスは次のとおりです。

package com.locator.map;

import java.text.DecimalFormat;
import java.util.List;

import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.graphics.drawable.Drawable;
import android.location.Criteria;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;

import com.google.android.maps.GeoPoint;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapController;
import com.google.android.maps.MapView;
import com.google.android.maps.Overlay;
import com.google.android.maps.OverlayItem;

public class Main extends MapActivity
{
    MapController controller;
    double currentLat;
    double currentLon;
    LocationManager manager;
    boolean locationChanged = false;
    Button retrieveLocationButton, toggleViewButton;
    boolean streetview = false;
    Drawable d;
    List<Overlay> overlaylist;
    MapView map;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);      
        map = (MapView) findViewById (R.id.googleMap);       
        map.setBuiltInZoomControls(true);
        map.setSatellite(true);
        controller = map.getController();


        manager = (LocationManager) this.getSystemService (Context.LOCATION_SERVICE);        

        retrieveLocationButton = (Button) findViewById(R.id.retrieveLocation);
        toggleViewButton = (Button) findViewById(R.id.changeView);

        retrieveLocationButton.setOnClickListener(new OnClickListener()
        {      
                public void onClick(View v)
                {
                    showCurrentLocation();
                }
        });        

        toggleViewButton.setOnClickListener(new OnClickListener()
        {
            public void onClick(View v)
            {
                if (streetview == false)
                {
                    map.setSatellite(false);
                    map.setStreetView(true);
                    streetview=true;
                }
                else if (streetview == true)
                {
                    map.setStreetView(false);
                    map.setSatellite(true);
                    streetview=false;
                }
            }           
        });
        LocationListener listener = new LocationListener()
        {
            public void onLocationChanged(Location location)
            {
                // TODO Auto-generated method stub

                //Retrieve the current GPS coordinates
                currentLat = location.getLatitude();
                currentLon = location.getLongitude();

                locationChanged = true;
            }

            public void onProviderDisabled(String provider)
            {
                // TODO Auto-generated method stub
                Toast.makeText(getBaseContext(), "Your GPS services are not activated.", Toast.LENGTH_LONG).show();
            }

            public void onProviderEnabled(String provider)
            {
                // TODO Auto-generated method stub
                Toast.makeText(getBaseContext(), "Your GPS services are now activated.", Toast.LENGTH_LONG).show();
            }

            public void onStatusChanged(String provider, int status, Bundle extras)
            {
                // TODO Auto-generated method stub
                Toast.makeText(getBaseContext(), "Your GPS service provider is changed.", Toast.LENGTH_LONG).show();
            }

        };

        manager.requestLocationUpdates(NETWORK_PROVIDER, 1000, 1, listener); //--> To update current location (coordinates [latitude & longitude]).       

    }

    protected void showCurrentLocation()
    {
        // TODO Auto-generated method stub

        //If location is changed or updated - Zoom in to current location, add a marker and show a dialog with current coordinates.
        if (locationChanged == true)
        {
            //Set the map's view and zoom level animation
            GeoPoint currentLocation = new GeoPoint ((int) (currentLat * 1E6), (int) (currentLon * 1E6));

            controller.setCenter(currentLocation);
            controller.setZoom(15);

            //Show the current coordinates (Convert to String and round off - 6 decimal places)
            String printLat = new DecimalFormat("0.######").format((double)currentLat);
            String printLon = new DecimalFormat("0.######").format((double)currentLon);

            AlertDialog alert = new AlertDialog.Builder(Main.this).create();
            alert.setTitle("Current Location:");
            alert.setMessage("Latitude: " + printLat + "\n" + "Longitude: " + printLon);
            alert.setButton("Close", new DialogInterface.OnClickListener()
            {               
                public void onClick(DialogInterface arg0, int arg1)
                {
                    // TODO Auto-generated method stub
                    //Alert Dialog won't work without a listener
                    //Do nothing (This will simply close your alert dialog)
                }
            });     
            alert.show();

            //Add a marker
            overlaylist = map.getOverlays();
            d = getResources().getDrawable(R.drawable.ic_launcher);         
            CustomPinpoint marker = new CustomPinpoint (d, Main.this);          
            OverlayItem overlayitem = new OverlayItem (currentLocation, "1st String", "2nd String");
            marker.insertPinpoint(overlayitem);
            overlaylist.add(marker);    
        }
    }

    @Override
    protected boolean isRouteDisplayed()
    {
        // TODO Auto-generated method stub
        return false;
    }
}

これが私のマニフェストです:

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

    <uses-sdk android:minSdkVersion="8"  android:targetSdkVersion="8"/>
    <uses-permission android:name="android.permission.INTERNET"/> 
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <application android:icon="@drawable/ic_launcher" android:label="Locator" >
        <uses-library android:name="com.google.android.maps" />     
        <activity
            android:name=".Main"
            android:label="Locator" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>        
    </application>

</manifest>

私の地域では GPS が機能していると思います。Google マップ アプリケーションを使用すると、正確な位置情報が返されます。Google マップを使用したのと同じ場所でアプリケーション (NETWORK_PROVIDER と GPS_PROVIDER の両方) を使用してみました。

  1. NETWORK_PROVIDER は依然として不正確な結果を返します。
  2. GPS_PROVIDER はまだ機能しません。

私を助けてください。

4

3 に答える 3

2

GoogleマップがプロバイダーとしてGPSを使用していることを確認しますか?GMapsは、Wi-FiおよびGSMアンテナからのデータのみを使用して場所(および場合によってはかなり正確な場所)を表示することがよくあります...その場合、コードが呼び出されることはありません(GPSが修正されるまで)。

追加してみます

locationManager.requestLocationUpdates(
                LocationManager.NETWORK_PROVIDER, 
                MINIMUM_TIME_BETWEEN_UPDATES, 
                MINIMUM_DISTANCE_CHANGE_FOR_UPDATES,
                new MyLocationListener());

あなたのコード(GPSアップデートを取得するための登録の下)に、その可能性をチェックするためだけに。

編集

ACCURACY_FINEをACCURACY_HIGHに変更してみてください

于 2012-07-11T04:18:38.913 に答える
0

マニフェストで「android.permission.ACCESS_FINE_LOCATION」を要求しましたか?

いずれにせよ、そのコードをアクティビティに含めることが GPS リスナーを実装する最良の方法であるかどうかは疑問ですが (なぜサービスを使用しないのですか?)、アプリケーションに固有の何かが表示されない可能性があります。

于 2012-07-11T02:41:49.203 に答える