Android 9.0 使用本地定位服务services

package com.example.mymapapp;

import android.Manifest;
import android.annotation.SuppressLint;
import android.app.Notification;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.hardware.SensorManager;
import android.location.Criteria;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Binder;
import android.os.Build;
import android.os.Bundle;
import android.os.IBinder;
import android.os.PowerManager;
import android.widget.Toast;

import androidx.annotation.RequiresApi;

import com.amap.api.maps.CoordinateConverter;
import com.amap.api.maps.model.LatLng;

import java.io.File;
import java.io.FileOutputStream;
import java.util.ArrayList;
import java.util.List;

/**
 * 获取gps位置信息的service
 *
 * @author king
 *
 */
@SuppressWarnings("ALL")
public class myService extends Service {
    SensorManager sensormanager;
    private LocationManager locationManager;
    private int i = 0;
    private PowerManager pm;
    private PowerManager.WakeLock wakeLock;
    private String notificationId = "serviceid";
    private String notificationName = "servicename";
    NotificationManager notificationManager;
    private LatLng latLng;
   // private GPSUploadThread myThread;
   List<LatLng> latLngs = new ArrayList<>();
    @Override
    public IBinder onBind(Intent intent) {
        // TODO Auto-generated method stub
        return new MsgBinder();
    }

    private void showNotification(){
        notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
        //创建NotificationChannel
        if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){
            NotificationChannel channel = new NotificationChannel(notificationId, notificationName, NotificationManager.IMPORTANCE_HIGH );
            notificationManager.createNotificationChannel(channel);
        }
        startForeground(1,getNotification());
    }
    private Notification getNotification() {
        Notification.Builder builder = new Notification.Builder(this)
                .setSmallIcon(R.mipmap.ic_launcher)
                .setContentTitle("title")
                .setContentText("text");
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            builder.setChannelId(notificationId);
        }
        Notification notification = builder.build();
        return notification;
    }


    @RequiresApi(api = Build.VERSION_CODES.M)
    @Override
    public void onCreate() {
        System.out.println("123");
        super.onCreate();
        showNotification();
        getNotification();

        //创建LocationManger对象(LocationMangager,位置管理器。要想操作定位相关设备,必须先定义个LocationManager)
        locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
        //利用Criteria选择最优的位置服务
        Criteria criteria = new Criteria();
        //设置定位精确度 Criteria.ACCURACY_COARSE比较粗略,Criteria.ACCURACY_FINE则比较精细
        criteria.setAccuracy(Criteria.ACCURACY_FINE);
        //设置是否需要海拔信息
        criteria.setAltitudeRequired(false);
        //设置是否需要方位信息
        criteria.setBearingRequired(false);
        // 设置是否允许运营商收费
        criteria.setCostAllowed(true);
        // 设置对电源的需求
        criteria.setPowerRequirement(Criteria.POWER_LOW);
        //获取最符合要求的provider
        String provider = locationManager.getBestProvider(criteria, true);
        //绑定监听,有4个参数
        //参数1,设备:有GPS_PROVIDER和NETWORK_PROVIDER两种
        //参数2,位置信息更新周期,单位毫秒
        //参数3,位置变化最小距离:当位置距离变化超过此值时,将更新位置信息
        //参数4,监听
        //备注:参数2和3,如果参数3不为0,则以参数3为准;参数3为0,则通过时间来定时更新;两者为0,则随时刷新
        if (checkSelfPermission(Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && checkSelfPermission(Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
            // TODO: Consider calling
            //    Activity#requestPermissions
            // here to request the missing permissions, and then overriding
            //   public void onRequestPermissionsResult(int requestCode, String[] permissions,
            //                                          int[] grantResults)
            // to handle the case where the user grants the permission. See the documentation
            // for Activity#requestPermissions for more details.
            return;
        }
        locationManager.requestLocationUpdates(provider, 1000, 0, locationListener);// 2000,10
    }

    @SuppressLint("InvalidWakeLockTag")
    @Override
    public void onStart(Intent intent, int startId) {
        System.out.println("456");
        // TODO Auto-generated method stub
        super.onStart(intent, startId);
        //创建PowerManager对象
        pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
        //保持cpu一直运行,不管屏幕是否黑屏
        wakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "CPUKeepRunning");
        wakeLock.acquire();
    }

    /**
     * 实现一个位置变化的监听器
     */
    private final LocationListener locationListener = new LocationListener() {

        @Override
        public void onLocationChanged(Location location) {
            System.out.println("789");
            // TODO Auto-generated method stub
            try {
                FileOutputStream fos = new FileOutputStream("//storage/emulated/0/Function/Data/"+"aded.err");
                String s = String.valueOf(location.getLongitude())+"##"+ String.valueOf(location.getLatitude());
                latLng = new LatLng(location.getLatitude(),location.getLongitude());
                CoordinateConverter converter = new CoordinateConverter(myService.this);
                converter.from(CoordinateConverter.CoordType.GPS);
                converter.coord(latLng);
                LatLng desLatLng = converter.convert();//转高德坐标

                latLngs.add(desLatLng);
                fos.write(s.getBytes());
                fos.close();
            }catch (Exception e){
                e.printStackTrace();
            }
            /**
             * 此处实现定位上传功能
             */
        }

        // 当位置信息不可获取时
        @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

        }

    };

    @Override
    public void onDestroy() {
        // TODO Auto-generated method stub
        // toggleGPS(false);
        if (locationListener != null) {
            locationManager.removeUpdates(locationListener);
        }
        wakeLock.release();
        super.onDestroy();
    }


    public List<LatLng> getProgress() {
        System.out.println("333333");
        if(latLngs.size()==0)
            return null;
        else return latLngs;
    }

    public class MsgBinder extends Binder {
        /**
         * 获取当前Service的实例
         * @return
         */
        public myService getService(){
            return myService.this;
        }
    }

    public interface OnUpdateUI {
        void updateUI(String i);
    }

}

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值