mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-05 04:47:39 +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) { _, _ ->
|
.setPositiveButton(R.string.ok) { _, _ ->
|
||||||
requestFineLocationPermission0()
|
requestFineLocationPermission0()
|
||||||
}
|
}
|
||||||
|
.setNegativeButton(R.string.cancel, null)
|
||||||
.setCancelable(false)
|
.setCancelable(false)
|
||||||
.show()
|
.show()
|
||||||
}
|
}
|
||||||
|
@ -375,6 +376,7 @@ class MainActivity : AbstractActivity(), ServiceConnection.Callback {
|
||||||
.setPositiveButton(R.string.ok) { _, _ ->
|
.setPositiveButton(R.string.ok) { _, _ ->
|
||||||
backgroundLocationPermissionLauncher.launch(Manifest.permission.ACCESS_BACKGROUND_LOCATION)
|
backgroundLocationPermissionLauncher.launch(Manifest.permission.ACCESS_BACKGROUND_LOCATION)
|
||||||
}
|
}
|
||||||
|
.setNegativeButton(R.string.cancel, null)
|
||||||
.setCancelable(false)
|
.setCancelable(false)
|
||||||
.show()
|
.show()
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
<string name="stop">Stop</string>
|
<string name="stop">Stop</string>
|
||||||
<string name="ok">OK</string>
|
<string name="ok">OK</string>
|
||||||
|
<string name="cancel">Cancel</string>
|
||||||
<string name="no_thanks">No, thanks</string>
|
<string name="no_thanks">No, thanks</string>
|
||||||
|
|
||||||
<string name="title_dashboard">Dashboard</string>
|
<string name="title_dashboard">Dashboard</string>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue