pdf_preview_activity.xml 715 B

12345678910111213141516
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:id="@+id/container_root"
  8. android:background="@color/light_gray"
  9. tools:context="com.redant.usai.rapdflib.preview.RAPDFPreviewActivity">
  10. <com.github.barteksc.pdfviewer.PDFView
  11. android:id="@+id/pdfView"
  12. android:layout_width="match_parent"
  13. android:layout_height="match_parent"/>
  14. </androidx.constraintlayout.widget.ConstraintLayout>