Wish Sugestion for a new library if possible

AscySoft

Active Member
Licensed User
Longtime User
Hello. I don't know where to post this, I was thinking that some experienced users here on forum will read this and will think about it.
I was not able to build a wrapper for this library:
dialogplus
Is someone willing to try build this for us(me)?
Huge thanks.
 

somed3v3loper

Well-Known Member
Licensed User
Longtime User
I gave it a shot but still with not much customization
B4X:
Dim dialog As DialogPlus
    dialog.Initialize("dp")
    Dim lv As ListView
    lv.Initialize("")
    lv.AddSingleLine("Test0")
    lv.AddSingleLine("Test1")
'    lv.Color=Colors.LightGray
    lv.SingleLineLayout.Label.Color=Colors.red
    lv.AddSingleLine("Test2")
    lv.AddSingleLine("Test3")
    lv.AddSingleLine("Test4")
    lv.AddSingleLine("Test5")
    lv.AddSingleLine("Test6")
'   
   
    dialog.BasicDialog( lv,True,Gravity.CENTER)

B4X:
Sub dp_onitemclick(position As Int)
    Log(position)
    Msgbox("Item at position "&position&" clicked","Test")
End Sub

 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…