if u want ur application appear in contact badge its different than make ur application provide call or send sms ur application will be in contact badge when u will have sync adapter and than ur application will have contact who add to contact list than uwill see ur application in contact badge for more information about this u can use this sample http://developer.android.com/resources/samples/SampleSyncAdapter/index.htmlit will show u how the scenario is
On Thu, Apr 26, 2012 at 12:32 PM, Shuki <[email protected]> wrote: > Well, thanks guys, that works, however I want a separate icon for my > application to appear in the QuickConnectBadge. > > With these intent-filters, when i click on call or sms icon i get the > pop-up saying "Complete the action using" in which I can see my app. > > But I want a dedicated button which user can click and invoke my app > directly. Like the one which skype has. > > Any ideas? > > -shuki > > > On Apr 11, 4:17 pm, Live Happy <[email protected]> wrote: > > add those intent to ur manifest file one for sms and the other for call > > <intent-filter android:priority="100"> > > > > <action android:name="android.intent.action.SENDTO" /> > > > > <category > android:name="android.intent.category.DEFAULT" > > /> > > <data android:scheme="sms" /> > > <data android:scheme="smsto" /> > > > > </intent-filter> > > > > <intent-filter android:priority="100" > > > > > <action > android:name="android.intent.action.CALL_PRIVILEGED" > > /> > > > > <category android:name="android.intent.category.DEFAULT" /> > > <data android:scheme="tel" /> > > > > </intent-filter> > > and dont forget to use permission to call privileged and to send sms > > > > On Tue, Apr 10, 2012 at 5:11 PM, Justin Anderson <[email protected] > >wrote: > > > > > > > > > > > > > > > > > Set the appropriate intent filter so that the Quick Contact Badge will > > > know your app can do something there... > > > > > Thanks, > > > Justin Anderson > > > MagouyaWare Developer > > >http://sites.google.com/site/magouyaware > > > > > On Sun, Apr 8, 2012 at 12:02 AM, Shuki <[email protected]> > wrote: > > > > >> How to integrate my app with existing/native contact manager? > > > > >> I looked through the forums but did not find the answer to the > following > > >> question. > > > > >> When I run Contact app in my phone and then I click on the avatar, > Quick > > >> Contact Badge(if I am not mistaken) shows up with some application to > > >> choose (Contact, Mail, etc) I would like to add icon (of my > Application) in > > >> that place. > > > > >> How can I do that? > > > > >> -- > > >> 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 > > > > > -- > > > 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 > > -- > 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 > -- 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

