0

I was wondering whether anyone could assist me. When the user clicks the menu button, on their android phone, the menu pops up. I would like to create a new menu item so that when clicked, it takes them instantly to my website. Is there any way to do this with intents or something like: ACTION_SEND?

Eric Leschinski
  • 146,994
  • 96
  • 417
  • 335
edwoollard
  • 12,245
  • 6
  • 43
  • 74

1 Answers1

0

Look here: How can I open a URL in Android's web browser from my application? -- Just put that within the onClick() event for the button.

Community
  • 1
  • 1
Nathan Tornquist
  • 6,468
  • 10
  • 47
  • 72
  • Thank you so much. There was a perfect example on there and it worked like a charm. I appreciate your help. My website now loads from my app menu. – edwoollard Jun 15 '12 at 15:58