Hi @Erel, All
i have a project that has
and in the Manifest i i have.
Up to version 10.60 it compiled and ran correctly.
With 10.70 it is compiled but the set theme ( Theme.AppCompat.Light.NoActionBar ) is not executed
Why ?
Thank you
Marco
i have a project that has
B4X:
#Extends: android.support.v7.app.AppCompatActivity
B4X:
SetApplicationAttribute(android:theme, "@style/MyAppTheme")
CreateResource(values, theme.xml,
<resources>
<style name="MyAppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">#222222</item>
<item name="colorPrimaryDark">#222222</item>
<item name="colorAccent">#009246</item>
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
</style>
</resources>
)
Up to version 10.60 it compiled and ran correctly.
With 10.70 it is compiled but the set theme ( Theme.AppCompat.Light.NoActionBar ) is not executed
Why ?
Thank you
Marco