abdi 0 Posted Tuesday at 01:52 AM Hello all, How to avoid overlapping with the native Android status bar and navigation bar in Delphi 12. Thank you Share this post Link to post
Build3999 8 Posted Tuesday at 02:29 PM To disable Android +15 default edge-to-edge behavior, you can add the android:windowOptOutEdgeToEdgeEnforcement="true" attribute to your app's theme. This will prevent your app's content from extending into the system bars (status bar and navigation bar). https://developer.android.com/develop/ui/views/layout/edge-to-edge Example: Add the following to your project's styles-??.xml file: <style name="AppTheme" parent="@android:style/Theme.Material.Light.NoActionBar"> .... <item name="android:windowOptOutEdgeToEdgeEnforcement">true</item> </style> As Google mentions, this solution is temporary. Delphi Athens 12.3 already provides this solution in its styles-v35.xml file. 1 Share this post Link to post
alejandro.sawers 17 Posted Tuesday at 05:04 PM 2 hours ago, Build3999 said: Delphi Athens 12.3 already provides this solution in its styles-v35.xml file Interesting, as I didn't read about it in the 12.3 new features page and my ticket about this issue remains open. Share this post Link to post