m (formatting) |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
;Description: Action used to display a progress dialog. | ;Description: Action used to display a progress dialog. | ||
+ | : To change a value of progress dialog <code>[[gn:act_changeProgressDialog]]</code>action must be used | ||
+ | : To close the progress dialog <code>[[gn:act_hideProgressDialog]]</code> must be used | ||
;Action returns: void | ;Action returns: void |
Latest revision as of 16:41, 8 August 2019
gn:act_showProgressDialog
- Description
- Action used to display a progress dialog.
- To change a value of progress dialog
gn:act_changeProgressDialog
action must be used - To close the progress dialog
gn:act_hideProgressDialog
must be used
- Action returns
- void
Action signatures
Show progress dialog
[gn:act_showProgressDialog]|[source,maxValue,currentValue,keyword]
Parameter Description source
source from where the progress dialog message will be used maxValue
number which represents the maximum value currentValue
number which represents the current value keyword
defines the progress dialog type Can be:
SPINNER
HORIZONTAL
Example
@+id/dialogMessage
- source100
- maxValue100
- currentValueSPINNER
- keyword
- ⤷
[gn:act_showProgressDialog]|[@+id/dialogMessage,100,100,SPINNER]
- ⤷