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.
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.
|
|
|
|