It is possible to invoke the system 'Home' screen from within code by executing:-
Can a similar method be used to invoke the 'Recent Apps' screen ?
B4X:
Dim i As Intent
i.Initialize(i.ACTION_MAIN, "")
i.AddCategory("android.intent.category.HOME")
i.Flags = 0x10000000
StartActivity(i)
Can a similar method be used to invoke the 'Recent Apps' screen ?