Share:import

From GiderosMobile
Revision as of 21:15, 20 February 2025 by MoKaLux (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Available since: Gideros 2024.1
Class: Share

Description

Importing a piece of data via the phone default file application.

(bool) = Share:import(mimeType,extension)

This invokes the platform default file application with the data filtered by MIME type and extension.

Parameters

mimeType: (string) the MIME type of the data
extension: (string) the extension to use as filter

Return values

Returns (boolean) true if data can be imported

Examples

require "Share"

local share = Share.new()

share:import("*/*" ,"jpg") -- MIME type, extension

local function decodeFileData(e)
	print("share:import callback:", e and e.status, e and e.mime, e and e.name)
	if e and e.status and e.status > 0 then
		print("Got Data:", #e.data)
	else
		print("Import failed")
	end
	share:removeEventListener(Event.SHARE_IMPORT_RESULT, decodeFileData)
end
share:addEventListener(Event.SHARE_IMPORT_RESULT, decodeFileData)

Audio

require "Share"

local share = Share.new()

share:import("audio/x-wav" ,"wav") -- MIME type, extension

local function decodeFileData(e)
	print("share:import callback:", e and e.status, e and e.mime, e and e.name)
	if e and e.status and e.status > 0 then
		print("Got Data:", #e.data)
	else
		print("Import failed")
	end
	share:removeEventListener(Event.SHARE_IMPORT_RESULT, decodeFileData)
end
share:addEventListener(Event.SHARE_IMPORT_RESULT, decodeFileData)