ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

New WINDEV Mobile 28 feature!
This content has been translated automatically.  Click here  to view the French version.
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Procedure WLanguage called by the function AndroidActivityResultProcedure
Procedure WLanguage (also called "callback") called by the AndroidActivityResultProcedure function when retrieving the result returned by a third party Activity.
Example
AndroidActivityResultProcédure((resultCode, requestCode, Uri, extras)=>{
IF resultCode = -1 _AND_ requestCode = 1024 THEN
FOR EACH ÉLÉMENT value OF extras
...
END
END
})
Syntax
AndroidActivityResultProcedure_Callback(<Result> , <Request code> , <Uri> , <Extras>)
<Result>: entier
Result of the operation carried out by the Activity that has just ended.
<Request code>: entier
"Request code" passed as parameter to the startActivityForResult method called to start the Activity.
<Uri>: URI variable
Name of the Variable of type URI corresponding to the URI of the data processed by the Activity.
<Extras>: Array associative of Variant
Key/value pairs received as a result of the Activity. Only the following value types are managed: Integer, String, Boolean, Buffer, Real, Array of integer, boolean, string or real.
If a key/value pair of an unsupported type is received, it will be ignored.
Minimum version required
  • Version 28
Comments
Click [Add] to post a comment