Other New feature - Manifest macros - Erel    Mar 08, 2018   (18 reactions) Manifest macros is a new feature coming in B4A v8.0. The origin of this feature was to help with explicitly setting the theme. As explained here: https://www.b4x.-safe-themes.87694/#content the default theme can be light or dark based on the device version. This means that if you are not explicitly B4A Question Manifest editor theme for specific activity - Stern0m1 (first post)    Feb 15, 2017   (1 reaction) Got it.
Example,
SetActivityAttribute(connecting,android:theme, "@android:style/Theme.Dialog") B4A Question Simple app with no interface? - Computersmith64 (first post)    Mar 02, 2024 Try using the translucent theme on your activity. Add the B4A equivalent to this to your manifest in your Activity tag: android:theme="@android:style/Theme.Translucent.NoTitleBar"> - Colin. B4A Question Auto hide navigation bar at full screen (ZOrder?) - Binary01 (first post)    Sep 28, 2016   (2 reactions) I got it. I add a line in Manifest. SetApplicationAttribute(android:theme, "@android:style/Theme.Holo.Light.NoActionBar.TranslucentDecor") Thanks bgsoft for your advice. regards. B4A Library Floating Action Button - woniol (first post)    Jan 10, 2015   (1 reaction) I found the problem. In your examples Material Theme is set in Manifest:
SetApplicationAttribute(android:theme, "@android:style/Theme.Material.Light")
Setting it to Holo helped on my android 4.1 devices:
SetApplicationAttribute(android:theme, "@android:style/Theme.Holo")
Thanks again for this gre B4A Library ParsSlideView(SlideView) - ilan (first post)    Jun 07, 2017 i have downloaded the example and tried to compile it. i dont understand what you mean with using an AppCompat theme. in manifest it is written: SetApplicationAttribute(android:theme, "@style/Theme.AppCompat") and the layout file is present in the res folder. B4A Question [SOLVED] manifest theme definitions - sorex (first post)    Aug 28, 2018 here's the error on the space invaders but these theme lines vary from example to example
'full screen theme: https://www.b4x.-screen-theme.93892/#content
SetApplicationAttribute(android:theme, "@style/DarkTheme")
CreateResource(values-v20, theme.xml,
<resources>
<style
name="DarkTheme" B4A Question Application icon on B4XMainPage - aeric (first post)    Nov 02, 2023   (1 reaction) Go to Manifest Editor and edit as following: 'CreateResourceFromFile(Macro, Themes.LightTheme) SetApplicationAttribute(android:theme, "@android:style/Theme.Holo.Light") B4A Question MultiPhotoPicker Error - Multiverse app (first post)    Jun 10, 2018 Yes, the app uses Appcompat. This is how the theme is defined in the Manifest: CreateResource(values, theme.xml, <resources> <style name="MyAppTheme" parent="@style/Theme.AppCompat"> <item name="colorPrimary">#41BAFF</item> <item name="colorPrimaryDark">#3D82F7</item> < B4A Question [B4xpages] Splash - how to remove title bar from mainpage only? - Erel (first post)    Jul 23, 2020   (1 reaction) Good questions: 1. A full screen theme is set in the manifest editor (https://www.b4x.-screen-theme.93892/#content). 2. The IME is required to handle the change in the activity height that happens after the activity is created. There is an edge case here. Page: 1   2   3   4   5   6   7   Powered by ColBERT |