Can LC display a list in a picker view, in Android?
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Can LC display a list in a picker view, in Android?
Can LC display a list in a picker view, in Android?
How?
Thanks,
David
How?
Thanks,
David
Re: Can LC display a list in a picker view, in Android?
Sure. See "mobilePick" in the dictionary.
Jacqueline Landman Gay | jacque at hyperactivesw dot com
HyperActive Software | http://www.hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
Re: Can LC display a list in a picker view, in Android?
Jacque,
I have spent a couple hours trying to use the information on that topic, but I have not found enough information to create a moblePick using a field, that will work on an Android.
Please refer me to an additional resource or show me an example.
Thanks,
David
I have spent a couple hours trying to use the information on that topic, but I have not found enough information to create a moblePick using a field, that will work on an Android.
Please refer me to an additional resource or show me an example.
Thanks,
David
Re: Can LC display a list in a picker view, in Android?
Given a field that contains this:
cow
horse
dog
cat
You can use this handler:
The answer dialog will return the line number that was chosen. This is the simplest example, you can also add Cancel or Done buttons.
cow
horse
dog
cat
You can use this handler:
Code: Select all
on mouseUp
mobilePick fld 1,0
answer "result = " && the result
end mouseUp
Jacqueline Landman Gay | jacque at hyperactivesw dot com
HyperActive Software | http://www.hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
Re: Can LC display a list in a picker view, in Android?
Jacque,
That works Good!
Is there a way to control the the Height and Width of the picker?
Thanks,
David
That works Good!
Is there a way to control the the Height and Width of the picker?
Thanks,
David
Re: Can LC display a list in a picker view, in Android?
The appearance of the picker is controlled by the OS, so you get the same standardized size that all apps use.
Jacqueline Landman Gay | jacque at hyperactivesw dot com
HyperActive Software | http://www.hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com