Android Question help menu activity

roy89

Member
Hello, good morning. I have a big problem that I don’t know how to solve. Could someone please help me? I need the menu to work smoothly, but when switching activities, the action gets killed and the menu breaks. Could you please fix it for me?

Private Sub ASFlowTabMenu1_TabClick(index As Int)
Select index
Case 0 ' Home
Case 1
StartActivity(Comprar)
End Select
End Sub

"When I switch to another activity, the tab gets out of place."
 

Attachments

  • Screenshot_20251101_193816.jpg
    Screenshot_20251101_193816.jpg
    110.4 KB · Views: 17

DonManfred

Expert
Licensed User
Longtime User
"When I switch to another activity, the tab gets out of place.
This is the expected behaviour in Android. Each activity has its own layout.
A tabmenu can only work in one activity.

If you want to have a tabmenu in Comprar then you need to build it again here.
 
Upvote 0
Top