Hello,

I would like my application to be an alternative to view messages and
calls. There are 3 intents to register for the 3 following actions:
list messages, read 1 sms, and check calls.

My issue is that android doesn't propose any choices for listing
several SMS but only launches the android native messaging app. This
is happening only on HTC Desire. Everything is working fine on G1,
Nexus and emulators 1.x and 2.x.

So I am thinking:

1. maybe I need to add something in the manifest? I tried already many
things as you can guess
2. HTC Sense is somehow forcing to use the messaging app to list
messages?

Can you comment on this please?

Thanks,

Arthur


My manifest:

//Intent filter to register my app for listing text messages
<intent-filter>
         <action android:name="android.intent.action.MAIN" />
         <category android:name="android.intent.category.DEFAULT" />
         <data android:mimeType="vnd.android-dir/mms-sms" />
</intent-filter>

//Intent filter to register my app for listing viewing text messages
and view calls
<intent-filter>
        <action android:name="android.intent.action.VIEW" />
        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />
        <data android:mimeType="vnd.android.cursor.dir/calls" />
        <data android:mimeType="vnd.android-dir/mms-sms" />
</intent-filter>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to