f58ce50a8d71e7a0670e7e43204d56d16bafbf69
[pub/Android/ownCloud.git] / res / layout / text_file_preview.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="match_parent"
4 android:layout_height="match_parent"
5 android:layout_marginStart="8dp"
6 android:layout_marginEnd="8dp">
7
8 <ScrollView
9 android:id="@+id/text_scrollview"
10 android:layout_width="match_parent"
11 android:layout_height="wrap_content"
12 android:scrollbars="vertical"
13 android:fillViewport="true"
14 android:visibility="gone">
15
16 <TextView
17 android:id="@+id/text_preview"
18 android:layout_width="match_parent"
19 android:layout_height="wrap_content"
20 android:layout_gravity="center" />
21 </ScrollView>
22
23 <ProgressBar
24 android:id="@+id/progress_bar"
25 android:layout_width="wrap_content"
26 android:layout_height="wrap_content"
27 android:layout_gravity="center"
28 android:visibility="gone" />
29 </FrameLayout>