For an app Im working on I needed a simple InputList with no radio buttons and no check boxes.
This has been requested before
So Ive written a really small library to do just that.
Its called InputMenu (as suggested by the thread above).
Very simple to use as it takes the same parameters as the built in InputList
The result is a menu of items to pick with no radio button or check box.
Library and demo source attached.
This has been requested before
So Ive written a really small library to do just that.
Its called InputMenu (as suggested by the thread above).
Very simple to use as it takes the same parameters as the built in InputList
B4X:
Dim im As InputMenu
Dim L As List
L.Initialize
L.Add("Item #1")
L.Add("Item #2")
L.Add("Item #3")
L.Add("Item #4")
Dim result As Int
result = im.Show(L,"Pick an Item")
The result is a menu of items to pick with no radio button or check box.
Library and demo source attached.