ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Mobile specific functions / Phone functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
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 valeur, clé 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, Integer array, 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: 03/28/2025

Send a report | Local help