mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-03 20:07:38 +03:00
Add cancel button to permission dialogs
This commit is contained in:
parent
54be93167d
commit
57914db97f
2 changed files with 3 additions and 0 deletions
|
@ -350,6 +350,7 @@ class MainActivity : AbstractActivity(), ServiceConnection.Callback {
|
|||
.setPositiveButton(R.string.ok) { _, _ ->
|
||||
requestFineLocationPermission0()
|
||||
}
|
||||
.setNegativeButton(R.string.cancel, null)
|
||||
.setCancelable(false)
|
||||
.show()
|
||||
}
|
||||
|
@ -375,6 +376,7 @@ class MainActivity : AbstractActivity(), ServiceConnection.Callback {
|
|||
.setPositiveButton(R.string.ok) { _, _ ->
|
||||
backgroundLocationPermissionLauncher.launch(Manifest.permission.ACCESS_BACKGROUND_LOCATION)
|
||||
}
|
||||
.setNegativeButton(R.string.cancel, null)
|
||||
.setCancelable(false)
|
||||
.show()
|
||||
}
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
<string name="stop">Stop</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="cancel">Cancel</string>
|
||||
<string name="no_thanks">No, thanks</string>
|
||||
|
||||
<string name="title_dashboard">Dashboard</string>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue