java - How does the default browser on Android send "SEND" intents? -
i'd enable "silent send" application-- is, i'd catch send intent in service, not activity. how default android web browser send intent? possible handle in service, or in activity never sets view?
is possible handle in service, or in activity never sets view?
action_send
intents
sent activity intents (e.g., startactivity()
), , cannot have service
receive them. can have them handled activity
never calls setcontentview()
, though.
Comments
Post a Comment