I think he's looking for the XML tags to allow his application to show up in the default picker screen. Try adding this on the activity you want to start for SMS:
<intent-filter> <action android:name="android.intent.action.SENDTO" /> <category android:name="android.intent.category.DEFAULT" /> <data android:scheme="sms" /> <data android:scheme="smsto" /> </intent-filter> That should put your application is the default picker. You'll need to catch the intent ACTION_SENDTO in your application to get the address and other data. Steven Studio LFP http://www.studio-lfp.com On Friday, October 14, 2011 12:21:25 AM UTC-5, Sreen wrote: > > Hi, > > Can anyone pls suggest me a link or URL resource which will share the > code snippet used to make my application the default application for > sms or rather any other feature like calling etc.... > > Thanks. > > Urgent! > > Sree -- 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

