diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2012-11-26 22:05:03 +0100 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2012-11-27 12:29:01 +0000 |
commit | 08fa32c5cc5bb1a2ea1468a3bfc81c49d4704593 (patch) | |
tree | f0d29d041feb008c36236c23a917df3dce620bdf /android/res | |
parent | 6ac8dc958a8f63158a075e42268a647f5828a9bb (diff) | |
download | mupdf-08fa32c5cc5bb1a2ea1468a3bfc81c49d4704593.tar.xz |
android: Use fullscreen activities for page and outline views.
Diffstat (limited to 'android/res')
-rw-r--r-- | android/res/layout/main.xml | 5 | ||||
-rw-r--r-- | android/res/layout/picker_entry.xml | 6 | ||||
-rw-r--r-- | android/res/values/theme.xml | 7 |
3 files changed, 3 insertions, 15 deletions
diff --git a/android/res/layout/main.xml b/android/res/layout/main.xml index 0da95fc5..6ae2638d 100644 --- a/android/res/layout/main.xml +++ b/android/res/layout/main.xml @@ -2,7 +2,4 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" - android:layout_height="fill_parent" - > -</LinearLayout> - + android:layout_height="fill_parent" /> diff --git a/android/res/layout/picker_entry.xml b/android/res/layout/picker_entry.xml index 050bbbfd..2424630b 100644 --- a/android/res/layout/picker_entry.xml +++ b/android/res/layout/picker_entry.xml @@ -3,7 +3,5 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:padding="10dp" - android:textSize="20dp" > - - -</TextView>
\ No newline at end of file + android:textAppearance="?android:attr/textAppearanceMedium" > +</TextView> diff --git a/android/res/values/theme.xml b/android/res/values/theme.xml deleted file mode 100644 index 68c55644..00000000 --- a/android/res/values/theme.xml +++ /dev/null @@ -1,7 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<resources> - <style name="Theme.NoBackground.NoTitle" parent="android:Theme"> - <item name="android:windowBackground">@null</item> - <item name="android:windowNoTitle">true</item> - </style> -</resources> |