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/AndroidManifest.xml | |
parent | 6ac8dc958a8f63158a075e42268a647f5828a9bb (diff) | |
download | mupdf-08fa32c5cc5bb1a2ea1468a3bfc81c49d4704593.tar.xz |
android: Use fullscreen activities for page and outline views.
Diffstat (limited to 'android/AndroidManifest.xml')
-rw-r--r-- | android/AndroidManifest.xml | 45 |
1 files changed, 26 insertions, 19 deletions
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml index f4c0bc7d..612086c4 100644 --- a/android/AndroidManifest.xml +++ b/android/AndroidManifest.xml @@ -1,28 +1,33 @@ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" - package="com.artifex.mupdf" - android:versionCode="1" - android:versionName="@string/version"> + package="com.artifex.mupdf" + android:versionCode="1" + android:versionName="@string/version"> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> - <supports-screens android:smallScreens="true" - android:normalScreens="true" - android:largeScreens="true" - android:anyDensity="true" /> + <supports-screens + android:smallScreens="true" + android:normalScreens="true" + android:largeScreens="true" + android:anyDensity="true" /> <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="11"/> - <application android:label="@string/app_name" - android:icon="@drawable/icon" - android:debuggable="true" - android:hardwareAccelerated="true"> - <activity android:name="ChoosePDFActivity" - android:label="@string/app_name"> + <application + android:label="@string/app_name" + android:icon="@drawable/icon" + android:debuggable="true" + android:hardwareAccelerated="true"> + <activity + android:name="ChoosePDFActivity" + android:theme="@android:style/Theme.Light" + android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> - <activity android:name="MuPDFActivity" - android:label="@string/app_name" - android:theme="@android:style/Theme.NoTitleBar"> + <activity + android:name="MuPDFActivity" + android:theme="@android:style/Theme.NoTitleBar.Fullscreen" + android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.VIEW"/> <category android:name="android.intent.category.DEFAULT"/> @@ -66,8 +71,10 @@ <data android:host="*"/> </intent-filter> </activity> - <activity android:name="OutlineActivity" - android:label="@string/outline_title"> - </activity> + <activity + android:name="OutlineActivity" + android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen" + android:label="@string/outline_title"> + </activity> </application> </manifest> |