Hello to all.
The following code:
in Android 2.x directly displays only the configuration of the network, while in vers. 3.x and 4.0 and 4.1 displays all options 'settings'.
Likewise, the code
in Android 2.x directly displays only the configuration of the wifi while in vers. 3.x and 4.0 and 4.1 displays all options 'settings'.
Is there a way to view only one part even in versions 3 and 4? (Eg: wireless, network, bluetooth, audio, display, etc.).
Hello and thank you
Enrico
The following code:
B4X:
Dim xAction As Intent
Dim s1 As String
s1 = "android.settings.WIRELESS_SETTINGS"
xAction.Initialize (s1, "")
StartActivity (xAction)
in Android 2.x directly displays only the configuration of the network, while in vers. 3.x and 4.0 and 4.1 displays all options 'settings'.
Likewise, the code
B4X:
Dim xAction As Intent
Dim s1 As String
s1 = "android.settings.WIFI_SETTINGS"
xAction.Initialize (s1, "")
StartActivity (xAction)
in Android 2.x directly displays only the configuration of the wifi while in vers. 3.x and 4.0 and 4.1 displays all options 'settings'.
Is there a way to view only one part even in versions 3 and 4? (Eg: wireless, network, bluetooth, audio, display, etc.).
Hello and thank you
Enrico