blob: da7702cd979f7e847ad3665b7594dbb58b1f8bc4 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="@dimen/activity_vertical_margin"
android:layout_marginLeft="@dimen/activity_horizontal_margin"
android:layout_marginRight="@dimen/activity_horizontal_margin"
android:layout_marginTop="@dimen/activity_vertical_margin"
tools:context=".PdfViewerActivity">
<io.v.android.apps.reader.PdfViewWrapper
android:id="@+id/pdfview"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_alignParentTop="true"
android:adjustViewBounds="true"
android:background="@android:color/white"
android:clickable="true"
android:visibility="invisible" />
<ProgressBar
android:id="@+id/pdf_progress_bar"
style="@android:style/Widget.Material.Light.ProgressBar.Horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true" />
<TextView
android:id="@+id/pdf_progress_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@id/pdf_progress_bar"
android:gravity="center"
android:textColor="@color/textPrimary" />
</RelativeLayout>