fcarriedo wrote: > Hello knowledgeable developers, > > Hope you can help me with the following: > > I need to add an action in the Context Menu that pops up after a a > Long Press of a Link in the Browser (the one that has 'Open', 'Open in > new window', 'Bookmark link', 'Save link', etc.) > > As a result of choosing my action it should call my service and > etc.... > > I don't want my app to overwrite all the context menu of the browser > but only add an action to it.
AFAIK, there is no way to add actions to the Browser application's context menu. You can customize the context menu of a WebView, though, for use within your own application. And, by implementing the ACTION_SEND intent filter appropriately for some Activity, you can be one of the options when the user chooses "Share link". -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Consulting/App Development: http://commonsware.com/consulting -- 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

