Android Question Running old version app (SDK 35) with 13.70 EDI

Alex_197

Well-Known Member
Licensed User
Longtime User
Hi all.

I have a question. I need to debug the previous non-B4XPage version of my app with SDK 35 with 13.70. All the screens are jumping up. How to prevent it from happening?

Thanks.
 

teddybear

Well-Known Member
Licensed User
1. Add to manifest editor:
B4X:
SetApplicationAttribute(android:theme, "@style/LightTheme")
CreateResource(values, theme.xml,
<resources>
    <style
name="LightTheme" parent="@android:style/Theme.Material.Light">
<item name="android:actionMenuTextAppearance">@style/LowerCaseMenu</item>
<item name="android:windowOptOutEdgeToEdgeEnforcement">true</item>
    </style>
<style name="LowerCaseMenu" parent="android:TextAppearance.Material.Widget.ActionBar.Menu">
<item name="android:textAllCaps">false</item>
    </style>
</resources>
)
2. Make sure to remove this line:
B4X:
CreateResourceFromFile(Macro, Themes.LightTheme)

The above is the solution provided by Erel
 
Last edited:
Upvote 0
Top