|
|
|
|
|
DownloadList (Function) In french: TéléchargementListe Lists the downloads from the current application in the download manager. Note: Download functions have no effect in the simulator.
TableDeleteAll(TABLE_Téléchargement)
ListeTéléchargement is array of TéléchargementInfo = DownloadList()
FOR EACH InfoTéléchargement OF ListeTéléchargement
TableAddLine(TABLE_Téléchargement, InfoTéléchargement.Identifiant, InfoTéléchargement.Titre)
END
IF TABLE_Téléchargement.Occurrence > 0 THEN
TABLE_Téléchargement = 1
END
Syntax
<Result> = DownloadList()
<Result>: Array of DownloadInfo Array of DownloadInfo variables that corresponds to the downloads from the application, present in the download manager. Remarks Required permissions This function changes the permissions required by the application. Permission required: INTERNET This permission allows the applications to open the network sockets.
Related Examples:
|
Android (WINDEV Mobile): Android Downloads
[ + ] This example illustrates background downloads in WINDEV Mobile and Android. It is no longer necessary to keep the application open to propose the download of a file. The download manager allows you to download large files and to notify the application when the downloads are finished.
|
Component: wd300android.aar
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|