diff options
| author | Menny Even Danan <menny@evendanan.net> | 2013-12-18 20:05:54 +0000 |
|---|---|---|
| committer | Menny Even Danan <menny@evendanan.net> | 2013-12-18 20:05:54 +0000 |
| commit | 690801f8cc67c73892116466145ca47f65314824 (patch) | |
| tree | 3c078e21ea4943bd974e466120ce499275f13003 /src/main/AndroidManifest.xml | |
| parent | bf05ff62c0af65609bf504509200af0e7b4fed27 (diff) | |
| download | AnySoftKeyboard-690801f8cc67c73892116466145ca47f65314824.tar.gz AnySoftKeyboard-690801f8cc67c73892116466145ca47f65314824.tar.bz2 | |
Uplifting the Crash Report Activity
Diffstat (limited to 'src/main/AndroidManifest.xml')
| -rw-r--r-- | src/main/AndroidManifest.xml | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/src/main/AndroidManifest.xml b/src/main/AndroidManifest.xml index 10df5f1d8..86399c6e4 100644 --- a/src/main/AndroidManifest.xml +++ b/src/main/AndroidManifest.xml @@ -37,7 +37,8 @@ android:icon="@drawable/ic_launcher" android:installLocation="internalOnly" android:label="@string/ime_name" - android:restoreAnyVersion="true"> + android:restoreAnyVersion="true" + android:theme="@style/Theme.AskApp"> <!-- used to backup the settings and SQL to the cloud --> <meta-data @@ -72,7 +73,7 @@ <!-- settings ui activities --> <!-- this is ajust a proxy activit, it does nothing but direct to the actual setting ativity I use this, so I can 'disable' this activity at runtime, and so remove ASK from the launcher's icons --> - <activity android:theme="@style/Theme.AppCompat.Light" + <activity android:theme="@style/Theme.AskApp" android:name="com.menny.android.anysoftkeyboard.LauncherSettingsActivity" android:icon="@drawable/ic_launcher_settings" android:launchMode="singleTop" @@ -83,7 +84,7 @@ <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> - <activity android:theme="@style/Theme.AppCompat.Light" + <activity android:theme="@style/Theme.AskApp" android:name="com.anysoftkeyboard.ui.settings.MainSettingsActivity" android:icon="@drawable/ic_launcher_settings" android:launchMode="singleTask" @@ -94,14 +95,16 @@ android:name="com.anysoftkeyboard.ui.tutorials.TestersNoticeActivity" android:icon="@drawable/ic_launcher" android:label="@string/testers_version" - android:theme="@style/Popup"> + android:theme="@style/Theme.AskApp.Popup"> </activity> <!-- ui when a crash happens --> - <activity + <activity android:theme="@style/Theme.AskApp.NoTitle" android:name="com.anysoftkeyboard.ui.SendBugReportUiActivity" android:icon="@drawable/ic_launcher" - android:label="@string/ime_name" - android:theme="@style/Popup"> + android:excludeFromRecents="true" + android:finishOnTaskLaunch="true" + android:launchMode="singleInstance" + android:label="@string/ime_name"> </activity> <!-- <activity android:name="com.anysoftkeyboard.ui.settings.SpellCheckerSettingsActivity" @@ -114,7 +117,7 @@ android:name="com.anysoftkeyboard.voice.VoiceInputNotInstalledActivity" android:icon="@drawable/ic_launcher" android:label="@string/ime_name" - android:theme="@style/Popup.NoTitle"/> + android:theme="@style/Theme.AskApp.Popup.NoTitle"/> <service android:name="com.anysoftkeyboard.voice.ServiceHelper"/> @@ -124,7 +127,7 @@ android:excludeFromRecents="true" android:finishOnTaskLaunch="true" android:icon="@drawable/ic_launcher" - android:theme="@android:style/Theme.Translucent.NoTitleBar" + android:theme="@style/Theme.AskApp.Popup.NoTitle" android:windowSoftInputMode="stateAlwaysHidden"/> </application> |
