(LIB REQUEST) FoldingCell for Android

Douglas Farias

Expert
Licensed User
Longtime User
Hi all
I need this lib, could anyone create it? I can make a donation after testing the library.
Just tell me the value

https://github.com/Ramotion/folding...um=special&utm_campaign=2121350-Delivery-Card


i need make a example like this

delivery_card.gif


thx
 

BillMeyer

Well-Known Member
Licensed User
Longtime User
+1
 

DonManfred

Expert
Licensed User
Longtime User
I need this lib, could anyone create it?
Where do you want to use/place the FoldingCell?
In a Activity? In a CustomListview?

In a Activity:

B4X:
Sub Globals
    Private fcell As FoldingCell
End Sub
Sub Activity_Create(FirstTime As Boolean)
    'Do not forget to load the layout file created with the visual designer. For example:
    Activity.LoadLayout("Layout1")
    Dim pfront As Panel
    pfront.Initialize("Panel")
    pfront.LoadLayout("front")
 
    Dim pback As Panel
    pback.Initialize("Panel")
    pback.LoadLayout("back")
    fcell.addView(pback,100%x,450dip)
    fcell.addView(pfront,100%x,150dip)
 
    fcell.init(1000,Colors.Transparent,2)
End Sub
The Layouts are just static here. you surely can fill the Layout like you wish...
Two Layouts are needed. One for the folded look. One for the unfolded look.
 
Last edited:

DonManfred

Expert
Licensed User
Longtime User
I can make a donation after testing the library.

My Quote for this lib (as written so far) is 55 Euro. I wrote the lib out of a request.

I´ll not release it until i get this amount but i´ll release it for free after i got paid for sure.

My suggestion/offer:

25 Euro @Douglas Farias (Requestor here and pn)
15 Euro @inakigarm (Job-Offer Supporter)
15 Euro @BillMeyer (Job-Offer Supporter)
=============
55 Euro (but feel free to donate more :D)
 

Douglas Farias

Expert
Licensed User
Longtime User
Where do you want to use/place the FoldingCell?
In a Activity? In a CustomListview?

In a Activity:

B4X:
Sub Globals
    Private fcell As FoldingCell
End Sub
Sub Activity_Create(FirstTime As Boolean)
    'Do not forget to load the layout file created with the visual designer. For example:
    Activity.LoadLayout("Layout1")
    Dim pfront As Panel
    pfront.Initialize("Panel")
    pfront.LoadLayout("front")

    Dim pback As Panel
    pback.Initialize("Panel")
    pback.LoadLayout("back")
    fcell.addView(pback,100%x,450dip)
    fcell.addView(pfront,100%x,150dip)

    fcell.init(1000,Colors.Transparent,2)
End Sub
The Layouts are just static here. you surely can fill the Layout like you wish...
Two Layouts are needed. One for the folded look. One for the unfolded look.
i will use on a clv, but if u can add to CustomListview and activity would be nice.
 
Top