1

4.0.4 を搭載した新しい Huawei ハンドセット Ascend G330D を持っています。問題は、「ネットワーク」ロケーション プロバイダーが機能せず、座標をまったく返さないことです。

その他の事実は次のとおりです。 1. アプリは正しい - かなりの数の Android デバイスで動作する 2. GPS ロケーション プロバイダーは正常に動作する 3. Google マップ アプリはネットワーク ロケーション (つまり GPS なし) でも完全に動作します! (/system/app の NetworkLocation.apk を置き換えました。その後、Google アプリ (マップ、ローカル) がネットワークの場所で動作し始めましたが、最初はどちらも機能しませんでした) 4. サードパーティのアプリ (マーケットから) はネットワークの場所で動作しません同じように

マップはオープン ソースではないため、Google API を使用するアプリとの違いはわかりませんが、Google マップは地理位置情報 (または認証キー) の別のソースを使用する可能性があると思います...

ネットワークの場所を機能させるためにどこを掘り下げるか、誰か考えがありますか?

4

1 に答える 1

0

完全な例については、このチュートリアルを確認してください

現在地の座標、都市名を取得

また、これが両方で動作している私の動作コードです

  • GPSプロバイダー
  • ネットワークプロバイダー

    public class MyLocationListener extends Service implements LocationListener {
    
    private static final String TAG = "MyLocationListener";
    
    private Context context = null;
    
    private Location location = null;
    private LocationManager locationManager = null;
    
    public static boolean isGPSEnabled = false;
    boolean isNetworkEnabled = false;
    boolean canGetLocation = false;
    
    public double latitude = 0.0;
    public double longitude = 0.0;
    public String location_address = null;
    
    // The minimum distance to change Updates in meters
    private static final long MIN_DISTANCE_CHANGE_FOR_UPDATES = 10;
    // The minimum time between updates in milliseconds
    private static final long MIN_TIME_BW_UPDATES = 1000 * 60 * 1; // 1 minute
    
    public MyLocationListener(Context ctx) {
        Log.v(TAG + ".MyLocationListener",
                "MyLocationListener constructor called");
        this.context = ctx;
        getLocationValue();
    }
    
    public Location getLocationValue() {
        Log.v(TAG + ".getLocationValue", "getLocationValue method called");
    
        try {
            locationManager = (LocationManager) context
                    .getSystemService(LOCATION_SERVICE);
    
            isGPSEnabled = locationManager
                    .isProviderEnabled(LocationManager.GPS_PROVIDER);
    
            isNetworkEnabled = locationManager
                    .isProviderEnabled(LocationManager.NETWORK_PROVIDER);
    
            if (isGPSEnabled) {
    
                this.canGetLocation = true;
                Log.v(TAG + ".getLocationValue", "GPS provider enabled");
                // Toast.makeText(context, "Gps", 1).show();
                if (location == null) {
                    locationManager.requestLocationUpdates(
                            LocationManager.GPS_PROVIDER, MIN_TIME_BW_UPDATES,
                            MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
                    if (locationManager != null) {
                        location = locationManager
                                .getLastKnownLocation(LocationManager.GPS_PROVIDER);
                        if (location != null) {
                            latitude = location.getLatitude();
                            longitude = location.getLongitude();
                            Log.v(TAG, "Gps Co-ordinates are:" + latitude + " "
                                    + longitude);
    
                        }
                    }
                }
    
            } else if (isNetworkEnabled) {
    
                // Toast.makeText(context, "Net", 1).show();
                Log.v(TAG + ".getLocationValue", "Network provider enabled");
                locationManager.requestLocationUpdates(
                        LocationManager.NETWORK_PROVIDER, MIN_TIME_BW_UPDATES,
                        MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
    
                if (locationManager != null) {
                    location = locationManager
                            .getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
                    if (location != null) {
                        latitude = location.getLatitude();
                        longitude = location.getLongitude();
                        Log.v(TAG, "Co-ordinates are: " + latitude + " "
                                + longitude);
    
                    }
                }
    
            } else {
                showSettingsAlert();
            }
    
        } catch (Exception e) {
            e.printStackTrace();
        }
    
        return location;
    }
    
    /**
     * Stop using GPS listener Calling this function will stop using GPS in your
     * app
     * */
    public void stopUsingGPS() {
        if (locationManager != null) {
            locationManager.removeUpdates(MyLocationListener.this);
        }
    }
    
    public double getLatitude() {
        if (location != null) {
            latitude = location.getLatitude();
        }
        return latitude;
    }
    
    public double getLongitude() {
        if (location != null) {
            longitude = location.getLongitude();
        }
        return longitude;
    }
    
    /**
     * Function to check GPS/wifi enabled
     * 
     * @return boolean
     * */
    public boolean canGetLocation() {
        return this.canGetLocation;
    }
    
    /**
     * Function to show settings alert dialog On pressing Settings button will
     * lauch Settings Options
     * */
    public void showSettingsAlert() {
        AlertDialog.Builder alertDialog = new AlertDialog.Builder(context);
    
        alertDialog.setTitle("GPS Settings");
        alertDialog
                .setMessage("GPS is not enabled. Do you want to go to settings menu?");
    
        alertDialog.setPositiveButton("Settings",
                new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int which) {
                        Intent intent = new Intent(
                                Settings.ACTION_LOCATION_SOURCE_SETTINGS);
                        context.startActivity(intent);
                    }
                });
        alertDialog.setNegativeButton("Cancel",
                new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int which) {
                        dialog.cancel();
                    }
                });
        alertDialog.show();
    }
    
    @Override
    public void onLocationChanged(Location location) {
    }
    
    @Override
    public void onProviderDisabled(String provider) {
    }
    
    @Override
    public void onProviderEnabled(String provider) {
    }
    
    @Override
    public void onStatusChanged(String provider, int status, Bundle extras) {
    }
    
    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }}
    

アクティビティで必要なときはいつでも、上記のコードをこのように使用してください

MyLocationListener mylistner = new MyLocationListener(context);
        double lat = mylistner.latitude;
        double lon = mylistner.longitude;

:マニフェストにもブロー権限があります

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<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"/>
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"/>   
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
于 2013-01-16T10:55:15.890 に答える