1

実際の電話やデバイスでテストすると、電話の緯度と経度を取得できません。常にnull値が返されますが、エミュレータでテストしてDDMSを使用して座標を送信すると、緯度と経度が正常に返されます。

これが私のクラスです:

package locateodroid.james;

import java.io.IOException;
import java.util.List;
import java.util.Locale;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.location.Address;
import android.location.Criteria;
import android.location.Geocoder;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.telephony.SmsManager;
import android.telephony.SmsMessage;
import android.widget.EditText;
import android.widget.Toast;

public class SMSReceiver extends BroadcastReceiver{

    public SharedPreferences prefs;
    private String Keywords = "prefmode";
    private Double lat;
    private Double lon;
    private static final String FAR_MODE_KEY = "farmode";
    private Context con;

    @Override
    public void onReceive(Context context, Intent intent) {

        con = context;
        String FarModeKeyword= "";
        String message = "";
        String number = "";
        prefs = context.getSharedPreferences(Keywords, Context.MODE_PRIVATE);
        FarModeKeyword = prefs.getString(FAR_MODE_KEY, "");

        //---get the SMS message passed in---
        Bundle bundle = intent.getExtras();
        SmsMessage[] msgs = null;

        if (bundle != null)
        {
            //---retrieve the SMS message received---
            Object[] pdus = (Object[]) bundle.get("pdus");
            msgs = new SmsMessage[pdus.length];
            for (int i=0; i<msgs.length; i++)
            {
                msgs[i] = SmsMessage.createFromPdu((byte[])pdus[i]);
                message += msgs[i].getMessageBody().toString();
            }

            for (int i=0; i<msgs.length; i++)
            {
                msgs[i] = SmsMessage.createFromPdu((byte[])pdus[i]);
                number += msgs[i].getOriginatingAddress();
            }

        }


            getLocation();
            Toast.makeText(context,
                    lat + "_" + lon,
                    Toast.LENGTH_SHORT).show();
            sendSMS(number, lat + "_" + lon);


    }

    private void sendSMS(String phoneNumber, String message)
    {
        SmsManager sms = SmsManager.getDefault();
        sms.sendTextMessage(phoneNumber, null, message, null, null);
    }

    private getLocation ()
    {
        // Get the location manager
        LocationManager locationManager = (LocationManager)con.getSystemService(Context.LOCATION_SERVICE);
        Criteria criteria = new Criteria ();
        Geocoder geoCoder = new Geocoder(con);
        LocationListener MyLocListener = new LocListener();
        List<String> providers = locationManager.getProviders(true);
        for (String provider : providers) {
            locationManager.requestLocationUpdates(provider, 0, 0, MyLocListener);
        }

        Location location = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
        lat = location.getLatitude();
        lon = location.getLongitude();

    }


    public class LocListener implements LocationListener
    {     
        @Override
          public void onLocationChanged(Location loc) {
              lat = loc.getLatitude();
              lon = loc.getLongitude();       
          }

        @Override
        public void onProviderDisabled(String arg0) {
            // 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

1 に答える 1

0

GPS座標を取得するためにマニフェストですべての許可を与えましたか? 携帯電話の「USE GPS Settelite」オプションがすでに選択されているかどうかを確認しましたか? GPS は建物内では修正されないため、建物の外でデータを取得してみてください。

これらすべての質問の答えが「いいえ」の場合。それより先にお願いします。

于 2013-03-29T17:27:40.723 に答える