B4A Library [Lib] UltimateListView

Blue.Sky

Active Member
Licensed User
Longtime User
Hello
How can i purchase your library?(From dontate?)
 

Lello1964

Well-Known Member
Licensed User
Longtime User
Hello Informatix, i have a problem, must change imageview in a panel from a sub without move to item. How refer to panel from Id or position ?
 

Luis Felipe

Member
Licensed User
Longtime User

Great library Fred : is it possible to combine/using it with the SearchView class from Erel ? if yes how would it be possible ?
Thanx in advance.
 

Informatix

Expert
Licensed User
Longtime User
There's a new version available for download.

Changelog v4.05:
- I added the UltimateLVPanel class to ease some operations on the item panels;
- I added the GetVisiblePanels function;
- I added the IsUniqueID function;
- I fixed an issue in the Editor demo;
- I added an example with two ULVs that can exchange items (DragNDropBetweenULV_demo.b4a);
- I updated the CallSubExtended library.
 

imbault

Well-Known Member
Licensed User
Longtime User
Hi @Informatix, is it possible to make like below:
an small horizontal scrollview with pictures, and a big imageview on up showing current picture, then just add a button to show previous/next?

 

MarcoRome

Expert
Licensed User
Longtime User
Hi all, i Have pictures with background white and this code:


B4X:
        ULV.Initialize(0, 0, "", "ULV")
            Activity.AddView(ULV, 0, 0, 100%x, 100%y)
            ULV.SetStyle(ULV.STYLE_HOLO_LIGHT)
            ULV.Color = Colors.White

But when i click about pictures i see background Gray:





It is possible set background with colors white so when i tap i dont see this gray color ?
Thank you
 

Informatix

Expert
Licensed User
Longtime User
Set the panel color to white in the Creator sub.
 

MarcoRome

Expert
Licensed User
Longtime User
Set the panel color to white in the Creator sub.

Hi Informatix, Thank you for your response.

I have this layout :



As you see i have Activity Color White (#FFFF)

I try also this code:

B4X:
Sub Item_LayoutCreator(LayoutName As String, LayoutPanel As Panel)
            LayoutPanel.Color = Colors.White
            LayoutPanel.LoadLayout("lay_menu_details")
           
End Sub

Sub Item_ContentFiller(ItemID As Long, LayoutName As String, LayoutPanel As Panel, Position As Int)
   
    LayoutPanel.Color = Colors.White
   
    Dim imageview1 As ImageView = LayoutPanel.GetView(0)
    'First view in the panel
    imageview1.Gravity = Gravity.FILL
    .....

But dont change nothing.
Any idea ?
Thank you
Marco
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…