HI Erel,
Is it possible to add some (of the following) functions for the homescreen widgets?
- Changes the view position on runtime. (need this desperately.)
- gets (and sets) the width of a view.
- gets (and sets) the height of a view.
- Adds a view on runtime. (need this desperately.)
- Removes a view at runtime. (need this desperately.)
I don't know if it's added yet, but perhaps a:
_longclick
for some views?
Thanks,
XverhelstX
Is it possible to add some (of the following) functions for the homescreen widgets?
B4X:
setLayout(String ViewName, int Left, int Top, int Width, int Height);
- Changes the view position on runtime. (need this desperately.)
B4X:
getWidth(String ViewName);
setWidth(String ViewName, int Width);
- gets (and sets) the width of a view.
B4X:
getHeight(String ViewName);
setHeight(String ViewName, int Height);
- gets (and sets) the height of a view.
B4X:
addView(View view, String ViewName, int Left, int Top, int Width, int Height);
- Adds a view on runtime. (need this desperately.)
B4X:
removeView(String ViewName)
- Removes a view at runtime. (need this desperately.)
I don't know if it's added yet, but perhaps a:
_longclick
for some views?
Thanks,
XverhelstX
Last edited: