Today I made a major breakthrough and LCL-Android can already show a simple form with a button.
Not much was actually done in the LCL-Android, almost all time was consumed writing the Bindings generator, and now it is quite well advanced.
Maybe we should make a more clear scope for the first 100 dollars and then go from there. Some suggestion of changes to your requirements:
* TForm - ok, but which properties specifically do you need? Android has only full screen windows, nothing else, so BorderIcons, WindowStyle and BorderStyle are unavailable.
* TButton - ok
* TText - Does not exist, maybe you ment TLabel or TStaticText?
* TImage, TBitBtn -> Now, those are *very* hard to implement
I would suggest to change to either:
* TForm, TButton, TStaticText + 1 or 2 other simple controls, like checkbox, combobox
or
* TForm, TButton, TLabel
Because TLabel is very complex and requires a lot of Canvas drawing and control painting to be implemented. TStaticText is very simple.