diff options
author | 2021-06-07 00:24:41 +0800 | |
---|---|---|
committer | 2021-06-10 14:32:51 +0000 | |
commit | ed13b1971d5f7c93bb36f30872f1b10cd0a9b310 (patch) | |
tree | 43a59a75ef061d9db97816d4a06271073cce4b81 /tools/EditTextVariations/AndroidManifest.xml | |
parent | fdf368cd6aa8aa21a5d10df846ef717ca9b98c37 (diff) | |
download | latinime-ed13b1971d5f7c93bb36f30872f1b10cd0a9b310.tar.gz latinime-ed13b1971d5f7c93bb36f30872f1b10cd0a9b310.tar.xz latinime-ed13b1971d5f7c93bb36f30872f1b10cd0a9b310.zip |
Make direct-reply notification as HUN in EditTextVariations
Also, set the content intent to launch an editorActivity as the message
notifiation when tapping the notification.
Bug: 190057993
Test: make EditTextVariations, manual test by using EditTextVariations
app to simulate the issue step.
Change-Id: I1a4463dc44031eaebb286ad2a289870e97a1c475
Diffstat (limited to 'tools/EditTextVariations/AndroidManifest.xml')
-rw-r--r-- | tools/EditTextVariations/AndroidManifest.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/EditTextVariations/AndroidManifest.xml b/tools/EditTextVariations/AndroidManifest.xml index b5a27b9c8..b283b3a01 100644 --- a/tools/EditTextVariations/AndroidManifest.xml +++ b/tools/EditTextVariations/AndroidManifest.xml @@ -34,6 +34,10 @@ <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> + <activity android:name=".EditorActivity" + android:windowSoftInputMode="stateHidden|adjustPan" + android:theme="@style/defaultActivityTheme" + android:label="@string/app_name"/> <receiver android:name=".NotificationBroadcastReceiver" android:exported="false"/> </application> |