gn:act_calculateDrivingDistance
- Description
- Action is used to get ginstr user data and store it into target
- Action returns
- void
Action signatures
Gets ginstr user data
[gn:act_getUserData]|[target,keyword]
Parameter Description target
target into which user data will be stored - Valid targets:
keyword
defines which type of ginstr user information we will retrieve Can be:
dateFormat
- gets date format set for ginstr user in ginstr web settings, returned formats formatstimeFormat
- gets time format set for ginstr user in ginstr web settings, returned formats formatsdateTimeFormat
- gets dateTime format set for ginstr user in ginstr web settings, returned formats formatsuserName
- gets userName of ginstr user
Example
screen.xml
<FrameLayout android:id="@+id/exampleFrame" android:layout_width="wrap_content" android:layout_height="wrap_content" android:visibility="gone" gn:act_set="[gn:act_getUserData]|[@+id/testWidget,dateFormat]" /> <com.ginstr.widgets.GnTextView android:id="@+id/testWidget" android:layout_width="wrap_content" android:layout_height="wrap_content"/>
after action execution
value in testWidget
: dd MMM yyyy
(depends on setting in ginstr web)