Android Question Don't show layout

anaylor01

Well-Known Member
Licensed User
Longtime User
How do you run your app without showing anything? I just want the service to run. I also want the service to run at bootup and run ALL the time.
 

ronell

Well-Known Member
Licensed User
Longtime User
B4X:
Activity.Color = Colors.Transparent
add this to manifest
B4X:
SetActivityAttribute(main, android:theme, @android:style/Theme.Translucent.NoTitleBar)
 
Upvote 0
Top