zoukankan      html  css  js  c++  java
  • Android 定位模板

    private void getLocationCity(){
    
            String serviceName = Context.LOCATION_SERVICE;
            locationManager = (LocationManager) getSystemService(serviceName);
    //        String provider = LocationManager.GPS_PROVIDER;
            String provider = LocationManager.NETWORK_PROVIDER;
    
            Criteria criteria = new Criteria();
            criteria.setAccuracy(Criteria.ACCURACY_FINE);
            criteria.setAltitudeRequired(false);
            criteria.setBearingRequired(false);
            criteria.setCostAllowed(true);
            criteria.setPowerRequirement(Criteria.POWER_LOW);
    //        String provider = locationManager.getBestProvider(criteria, true);
         locationManager.requestLocationUpdates(provider, 2000, 10,
                    locationListener);
            Location location = locationManager.getLastKnownLocation(provider);
            getAddress(location);   
        }
    
        private final LocationListener locationListener = new LocationListener() {
            public void onLocationChanged(Location location) {
                getAddress(location);
            }
            public void onProviderDisabled(String provider){
                getAddress(null);
            }
            public void onProviderEnabled(String provider){ }
            public void onStatusChanged(String provider, int status,
                                        Bundle extras){ }
        };
    
        private void getAddress(Location location) {
    
            if (location != null) {
                new MyAsyncCity().execute(location);
            } else {
                Log.d(TAG, "updateWithNewLocation: ");
            }
        }
    
        private class MyAsyncCity extends AsyncTask<Location, Void, String> {
    
            @Override
            protected String doInBackground(Location... params) {
                List<Address> addList = null;
                Geocoder ge = new Geocoder(WelcomeActivity.this);
                try {
                    addList = ge.getFromLocation(params[0].getLatitude(), params[0].getLongitude(), 1);
                } catch (IOException e) {
                    e.printStackTrace();
                }
                return addList.get(0).getLocality();
            }
    
            @Override
            protected void onPostExecute(String city) {
                super.onPostExecute(city);
                spUtil.setLocationCity(city);
            }
        }
  • 相关阅读:
    JSP动作元素<jsp:include>和<jsp:param>的搭配使用
    js去除字符串中的空格
    js 判断字符串中是否包含某个字符串(转载)
    window+R
    eclipse中ctrl+K失效
    图片转二进制——各种方法汇总(转载)
    spring mvc使用ModelAndView时发生No request handling method with name '方法 名' in class [类名]的错误
    类中main函数的快捷创建
    java中的中文字符转码技术
    SPOJ QTREE6
  • 原文地址:https://www.cnblogs.com/IT-lss/p/8350981.html
Copyright © 2011-2022 走看看