Elad Benda
Elad Benda

Reputation: 36654

hot to set a new title to my android appication in "share via" screen?

I have added my app to the images "share via" screen

(adding an intent filter in the manifest)

but I see all apps are organized alphabetically.

How can I change the title of my app so it will appear at the beginning?

I have seen dropbox changed theirs to "add to dropbox"

I want to change only the title for this specific perpuse. Not to change my app name for any use.

Upvotes: 0

Views: 112

Answers (1)

CommonsWare
CommonsWare

Reputation: 1006674

Try android:label on the ACTION_SEND <intent-filter>. Since this is static, you cannot guarantee that you will be first, but you can use "Add to" the way Dropbox did.

Upvotes: 2

Related Questions