Android Question Error : Calling parent activity from ActionBarHomeClick

BitsAndBytes

Active Member
Licensed User
I use the acActionBar and ActionBarHomeClick event on both of 3 activities but the event works only on main activity i use toolbar with the same settings on both of 3 activities and AbHelper object with "showUpIndicator = true"

On first activity it works fine
B4X:
Sub Activity_ActionBarHomeClick
    Log("ok")
End Sub

On second activity doesnt catch the event
B4X:
Sub Activity_ActionBarHomeClick
    Log("ok")
End Sub

On third activity doesnt catch the event
B4X:
Sub Activity_ActionBarHomeClick
   Log("ok")
End Sub
 

DonManfred

Expert
Licensed User
Longtime User
Without seeing your code we cant help.

Try to create a small project which shows the issue.
 
Upvote 0

BitsAndBytes

Active Member
Licensed User
Is possible to have 2 activities with acActionBar with ABHelper.ShowUpIndicator = True? because the Activity_ActionBarHomeClick event on my second activity does not work...

Thank you :)
 
Upvote 0
Top