将当前位置发送为SMS Android Studio

时间:2017-09-12 03:17:13

标签: android gps location

我是Android Studio新手。

我在点击按钮时尝试将当前位置作为短信发送,但点击时没有任何反应。

首先,这是我的XML:

<Button android:id="@+id/emergency"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:layout_centerVertical="true"
        android:layout_marginLeft="14dp"
        android:layout_marginStart="14dp"
        android:background="@drawable/button_selector1"
        android:drawableEnd="@android:drawable/ic_dialog_alert"
        android:gravity="center"
        android:maxLines="1"
        android:paddingLeft="15dip"
        android:paddingRight="15dip" />

然后,这是我的MainActivity代码:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    setContentView(R.layout.ly_home);

    emergency = (Button) findViewById(R.id.emergency);

    emergency.setOnClickListener(new View.OnClickListener(){
        @Override
        public void onClick(View v){
            GPStracker g = new GPStracker(getApplicationContext());
            Location l = g.getLocation();
            if (l != null){
                double lat = l.getLatitude();
                double lon = l.getLongitude();
                String message="http://maps.google.com/maps?saddr="+lat+","+lon;
                String number = "xxxxxxxx";
                SmsManager smsManager = SmsManager.getDefault();
                StringBuffer smsBody = new StringBuffer();
                smsBody.append(Uri.parse(message));
                android.telephony.SmsManager.getDefault().sendTextMessage(number, null, smsBody.toString(), null,null);
            }
        }
    });
}

而且,我的GPStracker课程:

public class GPStracker implements LocationListener{

    Context context;
    public GPStracker(Context c){
        context = c;
    }

    public Location getLocation(){

        LocationManager lm = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);
        boolean isGPSEnabled = lm.isProviderEnabled(LocationManager.GPS_PROVIDER);
        if (isGPSEnabled){
            lm.requestLocationUpdates(LocationManager.GPS_PROVIDER,6000,10,this);
            Location l = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
            return l;
        }else{
            Toast.makeText(context,"Please enable GPS", Toast.LENGTH_LONG).show();
        }
        return null;
    }

    @Override
    public void onLocationChanged(Location location) {

    }

    @Override
    public void onStatusChanged(String provider, int status, Bundle extras) {

    }

    @Override
    public void onProviderEnabled(String provider) {

    }

    @Override
    public void onProviderDisabled(String provider) {

    }
}

我已经在清单中给出了权限:精确位置,粗略位置以及接收和发送短信。我做错了什么?

2 个答案:

答案 0 :(得分:1)

根据以下答案 https://stackoverflow.com/a/43199211/6835152

检索位置有两种不同的方法,一种是基于网络,另一种是基于GPS服务。当然,基于GPS服务的位置总是更准确。根据文档,使用GPS服务接收位置可能需要一些时间。在这种情况下,可以使用最后一个已知位置通过使用getLastKnownLocation()方法获取最近可用的位置。在这里,要获取最后一个可用位置,您应该将LocationManager.GPS_PROVIDER更改为LocationManager.NETWORK_PROVIDER。

如果您希望收到基于GPS服务的准确实时位置,我建议您使用FusedLocationApi。你可以在https://developer.android.com/training/location/receive-location-updates.html

找到它

答案 1 :(得分:0)

使用LocationServices和fusedlocation API 您是否添加了对Google Play服务的依赖?

这是获取当前位置的tutorial

您也可以找到发送短信here

的代码