0

On Android, I want to make something like market://ETC but for my app so it would be like method://search?search=WHATEVERHERE and it'll open one of my activities and put an extra.

How can I do this? Thanks.

orftz
  • 1,138
  • 13
  • 22
Arber
  • 5
  • 1
  • 3

1 Answers1

2

I wanna make something like market://ETC but for my app so it would be like method://search?search=WHATEVERHERE and it'll open one of my activities and put an extra.

Please don't. Even Google admits that creating schemes like market:// was a bad idea.

Please use an <intent-filter> that supports the http:// scheme for some domain name you own and path that you control, so you can launch your activity that way. Here is a recent SO question covering this topic.

Community
  • 1
  • 1
CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491