我需要从存储中打开一个文件。我使用了Launcher.OpenAsync(),但它总是试图在PDF阅读器中打开文件。有没有其他方法可以在Android上使用默认应用程序打开文件?这是我已经试过的代码。
Launcher.OpenAsync()
private void OpenDocument(string filePath) { var localFile = "file://" + filePath; Launcher.OpenAsync(localFile); }
gab6jxml1#
string path = "your uri bla-bla-bla"; Launcher.OpenAsync (new OpenFileRequest() { File = new ReadOnlyFile(path) } );
1条答案
按热度按时间gab6jxml1#