Android Question BottomActionMenu Hide

Alexander Stolte

Expert
Licensed User
Longtime User
Download the V1.01 and do this:
B4X:
Private Sub B4XPage_CloseRequest As ResumableSub

    If BottomActionMenu.isOpen Then
        BottomActionMenu.HidePicker
        Return False
    End If
Return True
End Sub
In my test it only worked in release mode
 
Upvote 0

AlfaizDev

Well-Known Member
Licensed User
Download the V1.01 and do this:
B4X:
Private Sub B4XPage_CloseRequest As ResumableSub

    If BottomActionMenu.isOpen Then
        BottomActionMenu.HidePicker
        Return False
    End If
Return True
End Sub
In my test it only worked in release mode
Thank you very much
I tried it in debug mode and it works
 
Upvote 0
Top