我想在Xamarin Android中将声明文件夹中的PDF文件打开到活动
答案 0 :(得分:0)
使用Com.Joanzapata.Pdfview; 使用Com.Joanzapata.Pdfview.Listener;
命名空间openpdf { [Activity(Label =“openpdf”,MainLauncher = true)] 公共类MainActivity:活动 {
PDFView pdf;
protected override void OnCreate(Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);
SetContentView(Resource.Layout.Main);
**pdf = FindViewById<PDFView>(Resource.Id.pDFView1);
pdf.FromAsset("finished.pdf").Load();**
}
}
}
Main.Axml
<com.joanzapata.pdfview.PDFView
android:layout_width="match_parent"
android:layout_height="548.5dp"
android:id="@+id/pDFView1" />