Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- javascript
- php
- NGINX
- server
- 구글
- 개발자
- caddy
- mariadb
- centOS7
- ubuntu
- 해석
- 안드로이드
- 번역
- 개발
- kakao
- android
- H2O
- it
- MySQL
- error
- C
- techEmpower
- java
- unity
- C lanuage
- 자바
- 한글
- 프래그먼트
- Portfolio
- 컴퓨터과학총론
Archives
- Today
- Total
개발모음집
구글지도 위도, 경도값 받아오지못하는 에러 본문
LocationManager locationManager = (LocationManager) getContext().getSystemService(Context.LOCATION_SERVICE);
Criteria criteria = new Criteria();
Location location = locationManager.getLastKnownLocation();
LatLng userLocation = new LatLng(location.getLatitude(),location.getLongitude());
이런식으로 위도, 경도 받아오려했다.
Attempt invoke virtual method 'double android.location.Location.getLatitude()' on a null object reference
하지만 위도, 경도를 받아오지못했고
참고 스택오버플로우를 보고
LocationManager locationManager = (LocationManager) getContext().getSystemService(Context.LOCATION_SERVICE);
String locationProvider = LocationManager.NETWORK_PROVIDER;
location = locationManager.getLastKnownLocation(locationProvider);
변경하니 에러해결
'Android' 카테고리의 다른 글
Unable to add window -- token null is not for an application 에러 (0) | 2017.07.14 |
---|---|
구글 검색 api 에러 (0) | 2017.06.30 |
구글 Key Exists 에러 (0) | 2017.06.30 |
android FragmentTransaction, commit already called error (0) | 2017.06.29 |
AndroidStudio에서 Fragmnet를 자동으로 생성할 때 (0) | 2017.06.29 |