summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorkaiyiz <kaiyiz@codeaurora.org>2013-08-31 15:24:42 +0800
committerkaiyiz <kaiyiz@codeaurora.org>2013-09-11 13:06:29 +0800
commit1c412994a1fee1672ace97dde6a425e379fbc963 (patch)
treeb3c6b8513c427c9a1349497d384a295e22c6ee28 /AndroidManifest.xml
parent28f5c8b9076988c4494490663f47296809ddb8e6 (diff)
downloadandroid_packages_apps_Gello-1c412994a1fee1672ace97dde6a425e379fbc963.tar.gz
android_packages_apps_Gello-1c412994a1fee1672ace97dde6a425e379fbc963.tar.bz2
android_packages_apps_Gello-1c412994a1fee1672ace97dde6a425e379fbc963.zip
Browser: Add tips for new message received in full-screen mode
When the browser is running in full-screen mode,the status bar is hidden,so the new message received notification can't be viewed timely by the user. Add a receiver to monitor the custom broadcast from MMS, and using toast to alert users the new message received in full-screen mode. CRs-Fixed: 534580 Change-Id: Ie3f3d6896ec30caa07303fe6e8917676e0e629a0
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 8c88f437..0dc3ccc2 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -281,6 +281,12 @@
</intent-filter>
</receiver>
+ <receiver android:name=".MessagesReceiver">
+ <intent-filter>
+ <action android:name="com.android.mms.transaction.MESSAGE_RECEIVED" />
+ </intent-filter>
+ </receiver>
+
<receiver android:name=".PreloadRequestReceiver"
android:permission="com.android.browser.permission.PRELOAD" >
<intent-filter>