Android Question More B4XPages show <- in the title section

petr4ppc

Well-Known Member
Licensed User
Longtime User
Dear friends,

if I have more B4Xpages, then I have left arrow in the title section
1645349918356.png


- is here some possibility how to hide this arrow?
- is here some possibility how to detect (in code) click on this arrow?

Best ragards
p4ppc
 
Last edited:

TILogistic

Expert
Licensed User
Longtime User
is here some possibility how to hide this arrow?
B4X:
B4XPages.GetManager.ActionBar.RunMethod("setDisplayHomeAsUpEnabled", Array(False))

is here some possibility how to detect (in code) click on this arrow?
B4X:
    'home button
    If Main.ActionBarHomeClicked Then
see sample:
 
Upvote 0
Top