views:

47

answers:

1

i want to integrate my application with 3rd party application, my understanding is that both application can agree of a action which can be used in intent filter for any activity to be exported which could be used when 3rd party app fires the intent with that particular action in it, any body has a better approach to this, thanks

A: 

Using a custom action string to identify your activity is a fine solution. Be sure to make it sufficiently unique (e.g., com.commonsware.android.myapp.THIS_IS_MY_BOOMSTICK) so you do not run into problems with other applications accidentally choosing the same action.

CommonsWare
Thanks for this
SoftReference