Android Question Simple app with no interface?

Dustin Tinsley

Member
Licensed User
Longtime User
I made a very simple app that all it does is launch another app at startup. I made this to have custom banners on a 3rd party launcher. It works fine with one exception: it takes a bout 1/2 a second for the new app the launch. before it launches the interface for my simple app is shown. is there anyway to completely hide the interface or have a 100% transparent interface? Thanks in advance.
 

Computersmith64

Well-Known Member
Licensed User
Longtime User
Try using the translucent theme on your activity. Add the B4A equivalent to this to your manifest in your Activity tag:
B4X:
android:theme="@android:style/Theme.Translucent.NoTitleBar">
- Colin.
 
Upvote 0

Dustin Tinsley

Member
Licensed User
Longtime User
This is the code I used:

B4X:

SetActivityAttribute(main, android:theme, @android:style/Theme.Translucent.NoTitleBar)

And set the activity color:
B4X:

Activity.Color = Colors.Transparent
 
Upvote 0
Top