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
Top