B4A Library [B4X] [XUI] AS BottomActionMenu - Alexander Stolte    Jan 22, 2025   (18 reactions) by Paypal or with a coffee. :)
147931147932147933
BottomActionMenu.Initialize(Me,"BottomActionMenu",Root)
BottomActionMenu.Color = xui.Color_ARGB(255,32, 33, 37... B4A Tutorial [B4X] AS FloatingActionMenu - Open Menu above an item in a xCustomListView - Alexander Stolte    May 20, 2024   (10 reactions) this example, I let the AS_FloatingActionMenu open over an item that is in a list, no matter how far down the item is. 153902 Dim Height As Float = FloatingActionMenu.ItemProperties.Height*FloatingActionMenu.Size 'Action Menu Height Dim Width As Float = 250dip 'Action Menu Width... the right top If Top + Height > Root.Height Then 'If the menu no longer fits on the screen, display the menu above the list item Top = Top - Height - 80dip + 20dip End If... B4A Library [B4X] [XUI] AS FloatingActionMenu - Alexander Stolte    May 28, 2024   (14 reactions) . :)
153889 153890
153891
FloatingActionMenu.Initialize(Me,"FloatingActionMenu",Root)
FloatingActionMenu.AddItem("Item #1",Null,0)
FloatingActionMenu.AddItem... B4A Library Floating Action Menu (FAM) and Floating Action Button (FAB) - DonManfred    Apr 3, 2016   (45 reactions)
FloatingActionMenu
Events:
onClick (obj As View)
onMenuToggle (opened As Boolean)
Fields:
ba As BA...)
addMenuButton (fab As FloatingActionButton)
addMenuButton2 (fab As FloatingActionButton, index As Int... B4A Question AS FloatingActionMenu Show Menu on Button in b4xTable ? - jahswant    Aug 19, 2024 I have tried a lil hard to show ma neu in a b4x table row all my tests failed can some one provide a... B4A Code Snippet targetSdkVersion 35 and opting out of edge-to-edge enforcement - Erel    Jul 10, 2025   (29 reactions) name="android:actionMenuTextAppearance">@style/LowerCaseMenu</item> <item... <style name="LowerCaseMenu" parent="android:TextAppearance.Material.Widget.ActionBar.Menu"> <item name="android:textAllCaps">false</item>... B4A Question I want to access the AS BottomActionMenu properties for color, font, size, etc. - FrankDev (first post)    Jan 22, 2025 often you find the bottom menu solved differently, so that you can see that there is a menu at the bottom. can you maybe set the y -coordinate ? so that you can move the menu e.g. 20 or 30 dip... B4A Question BottomActionMenu Hide - AlfaizDev (first post)    Dec 24, 2024   (1 reaction)
Download the V1.01 and do this:
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... B4A Question AHQuickAction (1.02) Menu - Jmu5667    Sep 1, 2016 Hi
I am getting an error after I dim the menu in a local function so I can dynamically re-create.
Sub Process_Globals
Dim acChannels As AHQuickAction3D
end sub
Sub Activity_Create(FirstTime As Boolean)
If FirstTime Then
' // menu's
acChannels.Initialize("ac_channels", acChannels.VERTICAL)
end if
end sub
Sub make_menus_acChannels
Dim i As Int... B4A Question Floating Action Menu - makis_best (first post)    Oct 16, 2023   (1 reaction) Thank you so much @Sandman I will try that one.
I haven't find it on my search.... Page: 1   2   3   4   5   |