summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorlinus_lee <llee@cyngn.com>2014-08-27 10:53:57 -0700
committerlinus_lee <llee@cyngn.com>2014-11-20 11:58:47 -0800
commit985f9307bc9ebfd4af1800f6a4f127a4d50bbd8c (patch)
tree0563e7d778b2fbc7e77d9f993fc102fc9914364e /AndroidManifest.xml
parentbcc8e52433bc844bef8f4a114a628252b7124dd8 (diff)
downloadandroid_packages_apps_Eleven-985f9307bc9ebfd4af1800f6a4f127a4d50bbd8c.tar.gz
android_packages_apps_Eleven-985f9307bc9ebfd4af1800f6a4f127a4d50bbd8c.tar.bz2
android_packages_apps_Eleven-985f9307bc9ebfd4af1800f6a4f127a4d50bbd8c.zip
Eleven: Disable landscape and also fix a bug around landscape (in case we re-enable it)
Change-Id: I9bbfa1e179d13e22ca0626c92b737466587f52d3
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml17
1 files changed, 9 insertions, 8 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 81c2a54..cd7f1ad 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -64,6 +64,7 @@
android:windowSoftInputMode="adjustPan"
android:launchMode="singleTask"
android:exported="true"
+ android:screenOrientation="portrait"
android:theme="@style/Eleven.Theme.ActionBar.Overlay">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@@ -133,13 +134,15 @@
<!-- Profile phone Activity -->
<activity
android:name=".ui.activities.ProfileActivity"
- android:excludeFromRecents="true" />
+ android:excludeFromRecents="true"
+ android:screenOrientation="portrait"/>
<!-- Shortcut launcher Activity -->
<activity
android:name=".ui.activities.ShortcutActivity"
android:excludeFromRecents="true"
android:exported="true"
- android:theme="@style/Theme.Transparent" >
+ android:theme="@style/Theme.Transparent"
+ android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.media.action.MEDIA_PLAY_FROM_SEARCH" />
@@ -149,7 +152,8 @@
<!-- Search interface -->
<activity
android:name=".ui.activities.SearchActivity"
- android:exported="true" >
+ android:exported="true"
+ android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
<action android:name="android.intent.action.MEDIA_SEARCH" />
@@ -165,11 +169,8 @@
<activity
android:name=".ui.activities.SettingsActivity"
android:label="@string/menu_settings"
- android:theme="@style/Eleven.Theme" />
- <!-- Themes Activity -->
- <activity
- android:name=".ui.activities.ThemesActivity"
- android:excludeFromRecents="true" />
+ android:theme="@style/Eleven.Theme"
+ android:screenOrientation="portrait"/>
<!-- 4x1 App Widget -->
<receiver
android:name="com.cyngn.eleven.appwidgets.AppWidgetSmall"