diff options
author | 2014-07-17 19:23:35 -0700 | |
---|---|---|
committer | 2014-07-18 15:30:30 -0700 | |
commit | de1ab73efbe3520059647924857a2d7b82e2fbe7 (patch) | |
tree | aa174040423e454dc9aa6f234892a5e576bcbee2 /java/AndroidManifest.xml | |
parent | e645715b2575d462dafd09e98fce84555549b65b (diff) | |
download | latinime-de1ab73efbe3520059647924857a2d7b82e2fbe7.tar.gz latinime-de1ab73efbe3520059647924857a2d7b82e2fbe7.tar.xz latinime-de1ab73efbe3520059647924857a2d7b82e2fbe7.zip |
Use Theme.DeviceDefault theme
For API 21 (and later), Theme.DeviceDefault.Light is specified.
This CL must be checked in together with Ic91f28df81.
Bug: 11866784
Bug: 13888366
Bug: 15781377
Change-Id: I01b288473128fc2491d3663e90cab56d0ba2d704
Diffstat (limited to 'java/AndroidManifest.xml')
-rw-r--r-- | java/AndroidManifest.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/AndroidManifest.xml b/java/AndroidManifest.xml index ab9b13eb5..702b7aea2 100644 --- a/java/AndroidManifest.xml +++ b/java/AndroidManifest.xml @@ -86,7 +86,7 @@ </receiver> <activity android:name=".settings.SettingsActivity" - android:theme="@style/platformActivityTheme" + android:theme="@style/platformSettingsTheme" android:label="@string/english_ime_settings" android:uiOptions="splitActionBarWhenNarrow"> <intent-filter> @@ -95,7 +95,7 @@ </activity> <activity android:name=".spellcheck.SpellCheckerSettingsActivity" - android:theme="@style/platformActivityTheme" + android:theme="@style/platformSettingsTheme" android:label="@string/android_spell_checker_settings"> <intent-filter> <action android:name="android.intent.action.MAIN" /> @@ -103,7 +103,7 @@ </activity> <activity android:name=".settings.DebugSettingsActivity" - android:theme="@style/platformActivityTheme" + android:theme="@style/platformSettingsTheme" android:label="@string/english_ime_debug_settings"> <intent-filter> <action android:name="android.intent.action.MAIN" /> @@ -150,7 +150,7 @@ </receiver> <activity android:name="com.android.inputmethod.dictionarypack.DictionarySettingsActivity" - android:theme="@style/platformActivityTheme" + android:theme="@style/platformSettingsTheme" android:label="@string/dictionary_settings_title" android:uiOptions="splitActionBarWhenNarrow"> <intent-filter> |