gpt4 book ai didi

android - 如何使用 FireMonkey 在 iOS 上的默认应用程序中打开文件

转载 作者:行者123 更新时间:2023-12-05 00:15:39 25 4
gpt4 key购买 nike

我正在 FireMonkey 中为 Android 和 iOS 编写一个应用程序。我想从手机上默认应用程序中的 URL 打开文件(可以是 PDF、DOC、JPG 等)。

在 Android 上,我这样做:

Intent := TJIntent.Create;
Intent.setAction(TJIntent.JavaClass.ACTION_VIEW);
Intent.setData(StrToJURI(URL));
SharedActivity.StartActivity(Intent);

如何在 iOS 上执行类似的操作?

最佳答案

我在上一个项目中使用了这段代码。在任何平台上都能正常工作。

unit u_urlOpenUnit;

interface

uses
System.SysUtils, System.Types, System.UITypes, System.Classes,
System.Variants,
{$IF Defined(IOS)}
macapi.helpers, iOSapi.Foundation, FMX.helpers.iOS;
{$ELSEIF Defined(ANDROID)}
Androidapi.JNI.GraphicsContentViewText,
Androidapi.JNI.Net,
Androidapi.JNI.App,
Androidapi.helpers;
{$ELSEIF Defined(MACOS)}
Posix.Stdlib;
{$ELSEIF Defined(MSWINDOWS)}
Winapi.ShellAPI, Winapi.Windows;
{$ENDIF}

type
tUrlOpen = class
class procedure Open(const URL: string; const DisplayError: Boolean = False);
end;

implementation

class procedure tUrlOpen.Open(const URL: string; const DisplayError: Boolean = False);
{$IF Defined(ANDROID)}
var
Intent: JIntent;
{$ENDIF}
begin
{$IF Defined(ANDROID)}
Intent := TJIntent.JavaClass.init(TJIntent.JavaClass.ACTION_VIEW,
TJnet_Uri.JavaClass.parse(StringToJString(URL)));
try
TAndroidHelper.Activity.startActivity(Intent);
except
on e: Exception do
begin
// if DisplayError then ShowMessage('Error: ' + e.Message);
// exit(false);
end;
end;
{$ELSEIF Defined(MSWINDOWS)}
ShellExecute(0, 'OPEN', PWideChar(URL), nil, nil, SW_SHOWNORMAL);
{$ELSEIF Defined(IOS)}
if SharedApplication.canOpenURL(StrToNSUrl(URL)) then
SharedApplication.OpenURL(StrToNSUrl(URL));
{$ELSEIF Defined(MACOS)}
_system(PAnsiChar('open ' + AnsiString(URL)));
{$ENDIF}
end;

end.

关于android - 如何使用 FireMonkey 在 iOS 上的默认应用程序中打开文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65111171/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com