कोटलिन के लिए
private fun isLocationEnabled(mContext: Context): Boolean {
val lm = mContext.getSystemService(Context.LOCATION_SERVICE) as LocationManager
return lm.isProviderEnabled(LocationManager.GPS_PROVIDER) || lm.isProviderEnabled(
LocationManager.NETWORK_PROVIDER)
}
संवाद
private fun showLocationIsDisabledAlert() {
alert("We can't show your position because you generally disabled the location service for your device.") {
yesButton {
}
neutralPressed("Settings") {
startActivity(Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS))
}
}.show()
}
इस तरह से कॉल करें
if (!isLocationEnabled(this.context)) {
showLocationIsDisabledAlert()
}
संकेत: संवाद के लिए निम्न आयात की आवश्यकता है (Android स्टूडियो को आपके लिए इसे संभालना चाहिए)
import org.jetbrains.anko.alert
import org.jetbrains.anko.noButton
और प्रकट में आपको निम्नलिखित अनुमतियों की आवश्यकता है
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>