Dmitry-Borodin / pdfview-android

Small Android library to show PDF files
Apache License 2.0
294 stars 48 forks source link

pdf is not showing , need help #7

Closed ayeshaarshad52 closed 4 years ago

ayeshaarshad52 commented 4 years ago

xml: <com.pdfview.PDFView android:id="@+id/yar" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_below="@id/adView"/> java: PDFView pdfView = (PDFView) findViewById(R.id.yar);

    pdfView.fromAsset("book.pdf").show();

i done everything right but my pdf is not displaying it was working before with another library

Dmitry-Borodin commented 4 years ago

Please refer to sample in repository, it is working and demonstrates how to use fromAsset()

From this code I can only say that match parent view shouldn't be below another view in the same parent Different library may have completely different api.