B4A Question B4XView - SetLayoutAnimated - Top position doesn't work - Roberto P.    Jan 15, 2020 Hi all,
why doesn't the top parameter of the SetLayoutPosition function work? even setting a in the top parameter the position always remains the same.
See example:
Sub btnCustom_Click
Dim p As B4XView = xui.CreatePanel("")
p.SetLayoutAnimated(0, 200dip, 1500dip, 300dip, 350dip)
p.LoadLayout("CustomDialog")
p.Top = 1350dip ' my test'... B4J Question B4XView - It's not SetLayoutAnimated's fault... so what? - LucaMs    Jan 11, 2021 Playing around... I had a routine that reduced (or increased, ie a zoom) the size of a B4XView...: final Width & Height of the B4XView are 10x10 but it looks rectangular.
105922
P.S.
ZoomTest... B4A Tutorial [B4X] B4XPages - Cross platform and simple framework for managing multiple pages - Erel    Dec 25, 2025   (81 reactions) As B4XView) Root = Root1 'load the layout to Root End Sub 3. There must be one class named.... The class template is very simple and looks like this: Sub Class_Globals Private Root As B4XView... a B4XPage object. In most cases, you will pass Me: B4XPages.SetTitle(Me, "Draw Something") 11...440642051 B4XPages is a library that serves two purposes: 1. Make it simple to develop B4A apps by solving almost all of the challenges involved with Android complex activities life cycle. B4XPages... B4A Question [Solved] B4XPages - Root is animated - LucaMs    Sep 24, 2020 I get an ugly effect when showing a B4XPages. I set the layout Animation duration to 0ms, but I think that the Root Pane(l) is animated. I tried: Private Sub B4XPage_Created (Root1 As B4XView) Root1.SetLayoutAnimated(0, Root1.Left, Root1.Top, Root1.Width, Root1.Height) Root = Root1 Root.LoadLayout("MainPage") End Sub but it does not work.... B4A Tutorial [B4X] [XUI] CustomListView - lazy loading / virtualization - Erel    Nov 16, 2023   (39 reactions)   tags: customlist view card, CustomListView, Virtualiza, XCustomListView, xuiCLV, B4X .Content = content cd.BitmapFile = bitmaps.Get((i - 1) Mod bitmaps.Size) Dim p As B4XView = xui.CreatePanel("") p.SetLayoutAnimated(0, 0, 0, CLV1.AsView.Width, 280dip... - 1) Dim p As B4XView = CLV1.GetPanel(i) If p.NumberOfViews = 0 Then Dim cd... i = 0 To CLV1.Size - 1 Dim p As B4XView = CLV1.GetPanel(i) If i > FirstIndex....GetValue(Index) cd.Color = Color Dim p As B4XView = CLV1.GetPanel(Index) If p.NumberOfViews... B4A Question Panel SetLayoutAnimated spring effect - Alessandro71    Aug 2, 2022 I'm using the B4XView SetLayoutAnimated to resize the height of a panel, which contains other views, with duration <> 0 looking for a curtain effect. What really happens is that the panel... and after the SetLayoutAnimated call the AnimationDuration of the parent activity is set to 0, so there is no animation when the Activity is first displayed How do I disable the spring effect?... B4XFloatTextField) shows a "spring" effect, first compressing and then expanding again while... Other [new feature] b4xlib - a new type of library - Erel    Nov 2, 2020   (69 reactions)   tags: b4xlib;libraries, b4x library, Erel to create a zip file with these resources. The zip file extension should be b4xlib. That's all... are supported including activities and services. - Files, including layout files. - Optional... B4A Library [B4X] [XUI] B4XDialog - Custom dialogs - Erel    Dec 19, 2021   (22 reactions)   tags: B4X XUI B4X Dialog Custom, xui, myapp, Dialogs As B4XView = xui.CreatePanel("") p.SetLayoutAnimated(0, 0, 0, 300dip, 170dip) 'set...Edit: B4XDialogs is part of XUI Views library. Use that instead: XUI Views - Cross platform views and dialogs B4XDialog class helps with creating cross platform custom dialogs. The dialog is made... most cases it requires a bit more work as you also want to handle keyboard changes: 'B4A Sub..., NewHeight) End Sub 'B4i Sub Page1_KeyboardStateChanged (Height As Float) If Dialog.Visible Then... Italian B4XPages, B4XView. Cosa mi offrono rispetto alle Activity? - Sabotto    Sep 23, 2020 Buonasera a tutti. Dopo neanche un mesetto di apprendimento e prove con B4A (e due app create, a me utilissime, che mi evitano di accendere il Pc ogni volta che devo usarle, le avevo infatti create in VB.NET), sto cercando di approfondire questo bellissimo mondo. Le B4XPages e relative B4XView. Vorrei capire una cosa: il vantaggio principale maggiore di usare le 'pages' al posto delle 'Activity' è il "cross platform"?, uello che un'app creata per Android, puo... B4A Library CLVNested - Allows nesting CLVs - Erel    Sep 20, 2021   (20 reactions)   tags: list nested .AddTextItem($"*** TITLE (${i}) ***"$, "") Dim p As B4XView = xui.CreatePanel("") p.SetLayoutAnimated(0, 0, 0, 100%x, 200dip) p.LoadLayout("Item.... Load the layout with the main list to nested.base. 3. Set the main list with: nested.CLV = CustomListView 4. Add the items. If you want to add items with inner lists then you need to set...https://www.b4x.com/basic4android/images/firefox_e9gvxSKgTH.png Putting a CLV inside another one... Page: 1   2   3   4   5   6   7   |