Android Question Calling parent activity from ActionBarHomeClick

BitsAndBytes

Active Member
Licensed User
If you have 3 separate activitys and if you just load the first , the second and the after third activity how you will navigate on the previous loaded activity by pressing the ActionBarHomeClick button?

Thank you :)
 

BitsAndBytes

Active Member
Licensed User
I use the ActionBarHomeClick 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"

Sub Activity_ActionBarHomeClick ...on first activity it works fine
Log("ok")
End Sub

Sub Activity_ActionBarHomeClick ...on second activity doesnt catch the event
Log("ok")
End Sub

Sub Activity_ActionBarHomeClick ...on third activity doesnt catch the event
Log("ok")
End Sub

:(
 
Last edited:
Upvote 0
Top