Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / android / source / res / layout / document_viewer.xml
blobb4f45016403926a26abed1f375de7a899630eae2
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3  This file is part of the LibreOffice project.
4  This Source Code Form is subject to the terms of the Mozilla Public
5  License, v. 2.0. If a copy of the MPL was not distributed with this
6  file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  -->
8 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
9     android:layout_width="wrap_content"
10     android:layout_height="match_parent"
11     android:id="@+id/document_viewer_root">
12     <ViewFlipper
13         android:id="@+id/page_flipper"
14         android:layout_width="match_parent"
15         android:layout_height="match_parent" >
17     </ViewFlipper>
18     <HorizontalScrollView
19         android:layout_width="match_parent"
20         android:layout_height="wrap_content"
21         android:layout_alignBottom="@id/page_flipper"
22         android:scrollbarAlwaysDrawHorizontalTrack="true"
23         android:background="#aa000000">
24         <LinearLayout
25             android:id="@+id/navigator"
26             android:layout_width="wrap_content"
27             android:layout_height="120dp"
28             android:layout_margin="15dp"
29             android:orientation="horizontal">
30         </LinearLayout>
31     </HorizontalScrollView>
33 </RelativeLayout>