B4X:
SetApplicationAttribute(android:theme, "@style/Custom")
CreateResource(values-v20, theme.xml,
<resources>
<style
name="Custom" parent="@android:style/Theme.Holo.Light.Panel">
<item name="android:windowTranslucentNavigation">false</item>
<item name="android:windowTranslucentStatus">true</item>
</style>
</resources>
)
CreateResource(values-v19, theme.xml,
<resources>
<style
name="Custom" parent="@android:style/Theme.Holo.Light.Panel">
<item name="android:windowTranslucentNavigation">false</item>
<item name="android:windowTranslucentStatus">true</item>
</style>
</resources>
)
Hi, I manage to put above code into manifest editor and it works for small device, the status bar show on top of the image. But when I run the same program into bigger device "Samsung Note 8", the screen doesn't cover into full. May I know what did I miss out.