- Posts: 4
- Thank you received: 0
Microsoft Windows Phone 8.1 support ends (13 Jul 2017)
Microsoft has ended support for Windows Phone 8.1
Development and suggestions about third part tool integration.
Cordova, Xamarin, Basic4Android topics are listed here.
Cordova, Xamarin, Basic4Android topics are listed here.
PDFPageView for a Xamarin Custom Renderer
IP: 192.168.0.71
8 years 4 months ago #12983
by jsk
PDFPageView for a Xamarin Custom Renderer was created by jsk
I tried to develop a custom renderer for Android for the class Com.Radaee.View.PDFPageView in Xamarin.
I tried to open a PDF Document via a PDFStream.
I can still successfully open the stream, but opening the document fails.
Error:
java.lang.UnsatisfiedLinkError:
No implementation found for long com.radaee.pdf.Document.openStream(com.radaee.pdf.Document$PDFStream, java.lang.String)
Does that even have a chance of working?
I tried to open a PDF Document via a PDFStream.
I can still successfully open the stream, but opening the document fails.
Code:
using(Com.Radaee.Pdf.Document oDoc = new Com.Radaee.Pdf.Document())
using(PDFFileStream oStream = new PDFFileStream())
{
oStream.Open(m_strPdfUri);
oDoc.OpenStream(oStream, null);
// ...
}
Error:
java.lang.UnsatisfiedLinkError:
No implementation found for long com.radaee.pdf.Document.openStream(com.radaee.pdf.Document$PDFStream, java.lang.String)
Does that even have a chance of working?
IP: 192.168.0.71
8 years 4 months ago #12990
by jsk
Replied by jsk on topic PDFPageView for a Xamarin Custom Renderer
Can Radaee PDF be used in Xamarin Forms at all?
To integrate this into Forms, for example, you would need a view derivation that can be encapsulated in a custom renderer.
Is this planned or does it already exist?
To integrate this into Forms, for example, you would need a view derivation that can be encapsulated in a custom renderer.
Is this planned or does it already exist?
IP: 192.168.0.71
8 years 4 months ago #12992
by nermeen
Replied by nermeen on topic PDFPageView for a Xamarin Custom Renderer
Make sure to call
before opening
Currently any customization needs to be done in the native Android, iOS projects.
Yes, It's planned to provide a view that can be encapsulated in a custom renderer, but for more information you need to contact [email protected]
Code:
Global.Init(this);
Code:
oDoc.OpenStream(oStream, null);
Yes, It's planned to provide a view that can be encapsulated in a custom renderer, but for more information you need to contact [email protected]
IP: 192.168.0.71
8 years 4 months ago #13043
by jsk
Replied by jsk on topic PDFPageView for a Xamarin Custom Renderer
For Android I found PDFLayoutView that perfectly meets my requirements to use it in a custom renderer.
Is there anything comparable in the iOS part?
Is there anything comparable in the iOS part?
IP: 192.168.0.71
8 years 4 months ago #13045
by emanuele
Replied by emanuele on topic PDFPageView for a Xamarin Custom Renderer
Hi,
for more information about Xamarin module customization on iOS, I suggest to open a ticket addressed to Sales and licensing department on our ticket area: www.radaeepdf.com/support/tickets
for more information about Xamarin module customization on iOS, I suggest to open a ticket addressed to Sales and licensing department on our ticket area: www.radaeepdf.com/support/tickets
Time to create page: 0.493 seconds