marcick Well-Known Member Licensed User Longtime User Jul 24, 2023 #1 When I detect the user has changed the font size in system settings, I want to give him a message and drive him to the proper system settings page. How to do ? I found only the intent to open application specific settings. Thanks
When I detect the user has changed the font size in system settings, I want to give him a message and drive him to the proper system settings page. How to do ? I found only the intent to open application specific settings. Thanks
Erel B4X founder Staff member Licensed User Longtime User Jul 25, 2023 #2 (Sounds like a UX mistake to me) B4X: StartActivity("android.settings.DISPLAY_SETTINGS") Upvote 0
marcick Well-Known Member Licensed User Longtime User Jul 25, 2023 #3 Erel said: StartActivity("android.settings.DISPLAY_SETTINGS") Click to expand... mmmhh. doesn't work. I found here a list of the various names but I can't get it working with the sintax you suggest " java.lang.ClassNotFoundException: ....."" Upvote 0
Erel said: StartActivity("android.settings.DISPLAY_SETTINGS") Click to expand... mmmhh. doesn't work. I found here a list of the various names but I can't get it working with the sintax you suggest " java.lang.ClassNotFoundException: .....""
marcick Well-Known Member Licensed User Longtime User Jul 25, 2023 #4 Itr works like this B4X: Dim in As Intent in.Initialize("android.settings.DISPLAY_SETTINGS","") Try StartActivity(in) Catch Log("Failed to open settings") End Try Thanks ! Upvote 1
Itr works like this B4X: Dim in As Intent in.Initialize("android.settings.DISPLAY_SETTINGS","") Try StartActivity(in) Catch Log("Failed to open settings") End Try Thanks !
Erel B4X founder Staff member Licensed User Longtime User Jul 25, 2023 #5 You are of course correct! I confused the action with the intent... Upvote 0
marcick Well-Known Member Licensed User Longtime User Jul 25, 2023 #6 you were helpful as usual ? Upvote 0