When accessing settings using e.g.:
The settings are greyed out and not available to change.
Is there something I need to do to make them accessible?
Thanks
B4X:
GotoSettings("DATA_ROAMING")
Public Sub GotoSettings(Setting As String)
Dim StartIntent As Intent
StartIntent.Initialize("android.settings." & Setting.ToUpperCase & "_SETTINGS","")
StartActivity(StartIntent)
End Sub
Is there something I need to do to make them accessible?
Thanks