|
|
|
|
|
WLanguage procedure called by AndroidActivityResultProcedure 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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|