B4A Library [B4X] [XUI] AS FloatingActionButton [Payware] - Alexander Stolte    Dec 16, 2024   (29 reactions) HeyHo,
this is a cross platform Floating Action Button.
This library is not free, because, it cost a lot of time and gray hair to create such views.
https://payhip.com/b/q5oIT
Thanks for your understanding. :)
104554104555104556104653104654107552
Sub ASFloatingActionButton1_ButtonClicked(open..., IsMaterialIcons As Boolean, FontSize As Float, color As Int) As B4XBitmap
https://www.b4x.com/android... B4A Library [B4X] AS FloatingPanel - Alexander Stolte    Dec 16, 2024   (29 reactions) by Paypal or with a coffee. :)
131368131369
Examples:
Dim fp As AS_FloatingPanel
fp.Initialize(Me... the panel
fp.Show(0,0,200dip,200dip)
'or attached on a view
Dim Top As Float = xlbl_ClickMe.Top...
Color As Int
Height As Float
IsInitialized As Boolean
Tests whether the object has been initialized.
Left As Float
Top As Float
Width As Float
Functions:
Initialize
Initializes the fields to... B4A Library SD: Floating Button StandOut - Star-Dust    Jan 10, 2023   (33 reactions) On the Desktop. You can get the full version by making a donation.. SD_FloatingStandOut Author: Star-Dust Version: 0.09 FloatingStandOut Code module Subs in this code module will be accessible from all... StartActivity_OnLongClick As Boolean STICK_TO_BORDER As Boolean StopFloating_OnClick As Boolean StopFloating_OnDoubleClick As Boolean StopFloating_OnLongClick As Boolean WhiteCircle As Boolean WidthImage As Int X As Int Y...) As String SetStopFloating (OnClick As Boolean, OnDoubleClick As Boolean, OnLongClick As Boolean... B4A Tutorial [XUI] CustomListView with floating titles - Erel    Apr 21, 2020   (40 reactions)   tags: xuiCLV, list float title https://www.b4x.com/basic4android/images/clv_floatingtitle.gif Title items are added to the list. A Panel is set above the list. The panel shows the current title when the top visible item is not a title item. It works by checking for the top item type. If it is a title item then the panel is hidden, otherwise the panel is shown with the current title. The title layout should be anchored to the... Games [XUI2D] Floating Bodies Simulation - Erel    Oct 15, 2018   (17 reactions) 295113191 This is a small and nice example of simulating bodies thrown into water. It is inspired by this tutorial: http://www.iforce2d.net/b2dtut/buoyancy The implementation is different. The main task is to find the volume and center of mass of the underwater body. The floating force is -gravity * underwater volume. Volume = mass / density. The force is applied to the underwater center of mass. If you run it with debug drawing enabled you will see a green dot that marks the center... B4J Question How to do division of two Ints as integer division instead of floating point division? - emexes    Jan 6, 2024 Dim Temp As Int = NewX * 2 + 1 Dim Temp1 As Int = Temp * SrcWidth Dim Temp2 As Int = (NewWidth * 2) Temp = Temp1 / Temp2 decompiles to: int var23 = var21 * 2 + 1; int var24 = var23 * var17; int var25 = var1 * 2; int var10000 = (int)((double)var24 / (double)var25); Is there any way to get the castings out of the division line, without using inline Java?... Italian Convertire un numero Double in Float - Fulvio75    Jan 10, 2025 Ciao a tutti come si converte un numero Double in Float?
Ho provato con .As(Float) ma da errore... B4A Library [B4X] [XUI] AS FloatingActionMenu - Alexander Stolte    May 28, 2024   (14 reactions) This view makes it quick and easy to let the user make an action. You need: AS_FloatingPanel.... :) 153889 153890 153891 FloatingActionMenu.Initialize(Me,"FloatingActionMenu",Root) FloatingActionMenu.AddItem("Item #1",Null,0) FloatingActionMenu.AddItem("Item #2",Null,1) FloatingActionMenu.AddItem("Item #3",Null,2) Dim Height As Float = FloatingActionMenu.ItemProperties.Height*FloatingActionMenu.Size Dim Left As Float... B4A Tutorial [B4X] AS FloatingActionMenu - Open Menu above an item in a xCustomListView - Alexander Stolte    May 20, 2024   (9 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 Dim Left As Float = TargetView.Left + TargetView.Width/2 - Width 'To the left of the target item...(TargetView)) 'Gets the raw list item Dim Top As Float = CustomListView1.AsView.Top... B4A Tutorial [B4X] AS TextFieldAdvanced - TitleMode (AboveTextField, FloatText and BeforeTextField) - Alexander Stolte    May 17, 2024   (7 reactions) AS_TextFieldAdvanced1.TitleWidthAll(Root,100dip) 153810 FloatText Instead of the text hint, the title text... Page: 1   2   3   4   5   6   7   |