me again about widgets
update interval is constant and i can't use smthg like
B4X:
...
dim interval as int = edtInt.text
...
ConfigureHomeWidget("1", "rv", interval, "layout", 0)
...
is there a way around this? startserviceat maybe? any example? i want to use that because i want to give user an option to choose update interval (>=30 min)
The automatic update interval is defined in the XML file (the compiler creates this file during compilation). This means that this value cannot be changed.
However you can disable the automatic updates and use StartServiceAt instead. This will allow you to change the interval.