Animate Activity

Erel

B4X founder
Staff member
Licensed User
Longtime User
You can create the intent manually (package name is aaa.bbb and activity name is a1):
B4X:
   Dim i As Intent
   i.Initialize("", "")
   i.SetComponent("aaa.bbb/.a1")
   i.Flags = 0X00010000
   StartActivity(i)

It should be possible to create a custom animation with the reflection library. Start a new thread for this and I'll write a small example (next week...).
 
Upvote 0
Top