summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2012-02-09 15:48:08 +0000
committerRobin Watts <robin.watts@artifex.com>2012-02-20 13:37:25 +0000
commit892eb30731fead40cc588040aedd27e799da1152 (patch)
tree349849b6b3c51d0bfaa86f7f421118a01bb04f4a /android
parent8c426f6d8cd8f2d038fe3e690e6791c9b9b6edd4 (diff)
downloadmupdf-892eb30731fead40cc588040aedd27e799da1152.tar.xz
Remove "MuPDF" title bar on Android app.
Simple change to the XML.
Diffstat (limited to 'android')
-rw-r--r--android/AndroidManifest.xml15
1 files changed, 11 insertions, 4 deletions
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml
index 83c0ad86..a385849b 100644
--- a/android/AndroidManifest.xml
+++ b/android/AndroidManifest.xml
@@ -11,20 +11,27 @@
<application android:label="@string/app_name"
android:icon="@drawable/icon"
android:debuggable="true">
- <activity android:name="ChoosePDFActivity" android:label="@string/picker_title">
+ <activity android:name="ChoosePDFActivity"
+ android:label="@string/picker_title"
+ android:theme="@android:style/Theme.NoTitleBar">
<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">
+ </activity>
+ <activity android:name="MuPDFActivity"
+ android:label="@string/app_name"
+ android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="application/pdf"/>
</intent-filter>
</activity>
- <activity android:name="OutlineActivity" android:label="@string/outline_title"></activity>
+ <activity android:name="OutlineActivity"
+ android:label="@string/outline_title"
+ android:theme="@android:style/Theme.NoTitleBar">
+ </activity>
</application>
</manifest>