Nessuna descrizione

activity_consent_pdf_viewer.xml 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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:id="@+id/ConstraintLayout"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. tools:context="uprrp.tania.activities.ConsentPdfViewerActivity">
  9. <com.github.barteksc.pdfviewer.PDFView
  10. android:id="@+id/pdf_viewer"
  11. android:layout_width="0dp"
  12. android:layout_height="0dp"
  13. app:layout_constraintBottom_toBottomOf="parent"
  14. app:layout_constraintEnd_toEndOf="parent"
  15. app:layout_constraintHorizontal_bias="0.0"
  16. app:layout_constraintStart_toStartOf="parent"
  17. app:layout_constraintTop_toBottomOf="@+id/appBarLayout">
  18. </com.github.barteksc.pdfviewer.PDFView>
  19. <com.google.android.material.appbar.AppBarLayout
  20. android:id="@+id/appBarLayout"
  21. android:layout_width="match_parent"
  22. android:layout_height="61dp"
  23. android:theme="@style/Theme.MarleApp.AppBarOverlay"
  24. app:layout_constraintEnd_toEndOf="parent"
  25. app:layout_constraintStart_toStartOf="parent"
  26. app:layout_constraintTop_toTopOf="parent">
  27. <androidx.appcompat.widget.Toolbar
  28. android:id="@+id/toolbar"
  29. android:layout_width="match_parent"
  30. android:layout_height="match_parent"
  31. android:background="?attr/colorPrimary"
  32. app:popupTheme="@style/Theme.MarleApp.PopupOverlay" />
  33. </com.google.android.material.appbar.AppBarLayout>
  34. </androidx.constraintlayout.widget.ConstraintLayout>