ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Mobile specific functions / Phone functions
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
WLanguage procedure called by AndroidActivityResultProcedure
WLanguage procedure ("callback") called by AndroidActivityResultProcedure when the result of a third-party Activity is retrieved.
Example
AndroidActivityResultProcedure((resultCode, requestCode, Uri, extras)=>{
IF resultCode = -1 _AND_ requestCode = 1024 THEN
FOR EACH ELEMENT value OF extras
...
END
END
})
Syntax
AndroidActivityResultProcedure_Callback(<Result> , <Request code> , <Uri> , <Extras>)
<Result>: Integer
Result of the operation performed the Activity that has just ended.
<Request code>: Integer
Request code passed as parameter to the startActivityForResult method called to start the Activity.
<Uri>: URI variable
Name of the URI variable that corresponds to the URI of the data processed by the Activity.
<Extras>: Associative array of Variant
Key/value pairs received as result of the Activity. Only the following value types are supported: Integer, String, Boolean, Buffer, Real, Array of integer, boolean, string or real.
Key/value pairs of an unsupported type will be ignored.
Minimum version required
  • Version 28
Comments
Click [Add] to post a comment

Last update: 06/30/2023

Send a report | Local help