xamarin android pdf,Xamarin.Android - 下载pdf和视频到应用空间并打开
1. 下載創(chuàng)建本地應(yīng)用內(nèi)文件時(shí),創(chuàng)建模式必須為?FileCreationMode.WorldReadable
Stream fos = OpenFileOutput(pdfName, FileCreationMode.WorldReadable);
using (fos)
{
fos.Write(fileBytes,0,fileBytes.Length);
}
2. 調(diào)用pdf 應(yīng)用打開pdf文件
Java.IO.File pdfFile = Application.Context.GetFileStreamPath(pdfName);
if (pdfFile.Exists())
{
Android.Net.Uri path = Android.Net.Uri.FromFile(pdfFile);
Intent intent = new Intent(Intent.ActionView);
intent.SetDataAndType(path, "application/pdf");
intent.SetFlags(ActivityFlags.NewTask);
try
{
Application.Context.StartActivity(intent);
}
catch (ActivityNotFoundException ex)
{
System.Diagnostics.Debug.WriteLine("no app installed to view the pdf");
}
}
3. 使用VideoView播放視頻
videoView.SetVideoPath(internalPath);
videoView.Start();
參考:
http://www.voidcn.com/article/p-sjfkimpu-btb.html
總結(jié)
以上是生活随笔為你收集整理的xamarin android pdf,Xamarin.Android - 下载pdf和视频到应用空间并打开的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 中国银行信用卡额度是多少
- 下一篇: android jar 加入图片,And