23 lines
763 B
XML
23 lines
763 B
XML
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/reader"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
</FrameLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/page_number"
|
|
style="@style/TextAppearance.Regular.Caption"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom|start"
|
|
android:background="?android:attr/colorBackground"
|
|
android:padding="4dp"/>
|
|
|
|
<include layout="@layout/reader_menu"/>
|
|
|
|
</FrameLayout> |