주소1 안드로이드 현재 위치 위도, 경도 구하기 / 좌표 주소로 변환하기 우선 Manifest에 필요한 permission을 추가한다. 원하는 Activity에서 코드를 작성한다. var locationManager : LocationManager? = null private val REQUEST_CODE_LOCATION : Int = 2 var currentLocation : String = "" var latitude : Double? = null var longitude : Double? = null private fun getCurrentLoc() { locationManager = getSystemService(Context.LOCATION_SERVICE) as LocationManager? var userLocation: Location = getLatLng() i.. 2019. 7. 16. 이전 1 다음