«locationmanager» 태그된 질문

6
LocationManager에 대한 Android 확인 권한
내 활동 레이아웃에서 버튼을 클릭 할 때 표시 할 GPS 좌표를 얻으려고합니다. 다음은 버튼을 클릭 할 때 호출되는 메서드입니다. public void getLocation(View view) { TextView tv = (TextView) findViewById(R.id.gps_coord_view); LocationManager lm = (LocationManager) getSystemService(LOCATION_SERVICE); Location loc = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER); tv.setText("Latitude: " + loc.getLatitude() + "\nLongitude: " + loc.getLongitude()); } 다음과 같은 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.