Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to show a list of applications (with intent.createChooser) that only show me my twitter apps on my phone (so htc peep (htc hero) or twitdroid). I have tried it with intent.settype("application/twitter") but it doesnt find any apps for twitter and only shows my mail apps.

Thank you,

Wouter

share|improve this question

7 Answers

up vote 14 down vote accepted

It is entirely possible your users will only ever, now and forever, only want to post to Twitter.

I would think that it is more likely that your users want to send information to people, and Twitter is one possibility. But, they might also want to send a text message, or an email, etc.

In that case, use ACTION_SEND, as described here. Twidroid, notably, supports ACTION_SEND, so it will appear in the list of available delivery mechanisms.

share|improve this answer
5  
ACTION_SEND is too vague. Gmail and dropbox are eligible. I suggest you filter the list based on known package names. – rds Jun 2 '11 at 10:01
3  
@rds: ACTION_SEND is not "too vague". There are lots of other places where users will want to share things -- as I wrote in my answer, ideally, apps do not limit users to sharing only via Twitter. And your filter is "too fragile" and "too dangerous", in that it relies on undocumented information from a tiny list of Twitter clients. If you only want to share to Twitter, use the Twitter client API. – CommonsWare Jun 4 '11 at 13:34
11  
Some applications want to limit to twitter posting, and this is what was asked here. Using the twitter API is a- reinventing the wheel b- a duplicate of what HTC/Samsung/twitter has already provided c- complicated (authentification, repost if fail, tiny url, etc.) – rds Jun 4 '11 at 13:53
I agree with rds. I'd prefer to customize the message formatting for the appropriate channel. An email has a subject line, a tweet does not. Because most apps don't bother to filter themselves out appropriately (even with the application/twitter mime type set), manually filtering for known twitter apps seems to be an appropriate workaround. – jasonhudgins Mar 22 '12 at 2:22
1  
Well, yes, but the users will do bad ratings about my app, not about Facebook. For them it looks like an error of my app. And there are also many apps which integrate the SDK, so it's hard for them to know that it's Facebook's fault. – Ixx Mar 4 at 13:56
show 6 more comments

This question is a bit older, but since I have just come across a similar problem, it may also still be of interest to others. First, as mentioned by Peter, create your intent:

Intent tweetIntent = new Intent(Intent.ACTION_SEND);
tweetIntent.putExtra(Intent.EXTRA_TEXT, "Test; please ignore");
tweetIntent.setType("application/twitter");

"application/twitter" is in fact a known content type, see here. Now, when you try to start an activity with this intent, it will show all sorts of apps that are not really Twitter clients, but want a piece of the action. As already mentioned in a couple of the "why do you even want to do that?" sort of answers, some users may find that useful. On the other hand, if I have a button in my app that says "Tweet this!", the user would very much expect this to bring up a Twitter client.

Which means that instead of just launching an activity, we need to filter out the ones that are appropriate:

PackageManager pm = getPackageManager();
List<ResolveInfo> lract 
= pm.queryIntentActivities(tweetIntent,
    PackageManager.MATCH_DEFAULT_ONLY);

boolean resolved = false;

for(ResolveInfo ri: lract)
{
    if(ri.activityInfo.name.endsWith(".SendTweet"))
    {
        tweetIntent.setClassName(ri.activityInfo.packageName,
                        ri.activityInfo.name);
        resolved = true;
        break;
    }
}

You would need to experiment a bit with the different providers, but if the name ends in ".SendTweet" you are pretty safe (this is the activity name in Twidroyd). You can also check your debugger for package names you want to use and adjust the string comparison accordingly (i.e. Twidroyd uses "com.twidroid.*").

In this simple example we just pick the first matching activity that we find. This brings up the Twitter client directly, without the user having to make any choices. If there are no proper Twitter clients, we revert to the standard activity chooser:

startActivity(resolved ? tweetIntent :
    Intent.createChooser(tweetIntent, "Choose one"));

You could expand the code and take into account the case that there is more than one Twitter client, when you may want to create your own chooser dialog from all the activity names you find.

share|improve this answer
1  
Very informative, thanks! – Kon Apr 20 '11 at 14:51
2  
"application/twitter" not an official MIME type. Hence, it is supported only by twitdroid. As for the sendTweetmethod name, I think it's even more restricitve – rds Dec 19 '11 at 16:10
1  
I ended up using your idea mixed with rds's blog link, but if I don't find any application suitable for tweeting, I use their url to share the comment (twitter.com/home?status=Hi+There) – Maragues Jan 31 '12 at 18:48
2  
It's not working.............. – Sudeep SR Jul 25 '12 at 14:15
sir help me , itry to send the image on twitter but not get success please help me how to send the image . if u have a sample code please share with me – Rishi Gautam Mar 24 at 4:23

The solutions posted before, allow you to post directly on your first twitter app. To show a list of twitters app (if there are more then one), you can custom your Intent.createChooser to show only the Itents you want.

The trick is add EXTRA_INITIAL_INTENTS to the default list, generated from the createChoose, and remove the others Intents from the list.

Look at this sample where I create a chooser that shows only my e-mails apps. In my case appears three mails: Gmail, YahooMail and the default Mail.

private void share(String nameApp, String imagePath) {
    List<Intent> targetedShareIntents = new ArrayList<Intent>();
    Intent share = new Intent(android.content.Intent.ACTION_SEND);
    share.setType("image/jpeg");
    List<ResolveInfo> resInfo = getPackageManager().queryIntentActivities(share, 0);
    if (!resInfo.isEmpty()){
        for (ResolveInfo info : resInfo) {
            Intent targetedShare = new Intent(android.content.Intent.ACTION_SEND);
            targetedShare.setType("image/jpeg"); // put here your mime type

            if (info.activityInfo.packageName.toLowerCase().contains(nameApp) || 
                    info.activityInfo.name.toLowerCase().contains(nameApp)) {
                targetedShare.putExtra(Intent.EXTRA_TEXT,     "My body of post/email");
                targetedShare.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(imagePath)) );
                targetedShare.setPackage(info.activityInfo.packageName);
                targetedShareIntents.add(targetedShare);
            }
        }

        Intent chooserIntent = Intent.createChooser(targetedShareIntents.remove(0), "Select app to share");
        chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS, targetedShareIntents.toArray(new Parcelable[]{}));
        startActivity(chooserIntent);
    }
}

You can run like that: share("twi", "/sdcard/dcim/Camera/photo.jpg");

This was based on post: Custom filtering of intent chooser based on installed Android package name

share|improve this answer
Just a detail: "twi" gets Twitter and Twicca, but misses many other clients such as TweetCaster, HootSuite and Plume. – Pierre-Luc Paour Jan 28 at 14:23
@Pierre-LucPaour You are right. The code can be adapted to try to match more than one app partial name. I think there isn't a way to show all (and just) twitter applications without knowing the name or part of the name of these applications. Is there any other way? Is the solution of the alexander-rautenberg works for all twitters apps? – Derzu Jan 29 at 13:40
I merely meant to point out to future readers that they do need to inventory the various Twitter clients and their naming rather than blindly using this code. – Pierre-Luc Paour Jan 29 at 20:59
sir plz help i use this code for image sharing and text when i call this method ti will crash plz help me how can i do . plz help – Rishi Gautam Mar 23 at 11:58
@RishiGautam please post your exception stack trace. – Derzu Mar 23 at 21:10
show 4 more comments

Either

  • You start an activity with an Intent with action Intent.ACTION_SEND and the text/plain MIME type. You'll have all applications that support sending text. That should be any twitter client, as well as Gmail, dropbox, etc.
  • Or, you try to look up for the specific action of every client you are aware of, like "com.twitter.android.PostActivity" for the official client. That will point to this client, and that is unlikely to be a complete list.
  • Or, you start with the second point, and fall back on the first...
share|improve this answer
2  
See regis.decamps.info/blog/2011/06/… for an implementation of this idea – rds Jun 2 '11 at 10:02
thanks for pointing to my blog. One of the problems with my implementation is when the facebook app is in the foreground in another activity, it won't open the post intent correctly. – Rafael Sanches Feb 28 '12 at 2:07
@rds sir csn u help me sir i try to poast the image but not get success plz help me sir – Rishi Gautam Mar 24 at 4:19

Nope. The intent type is something like image/png or application/pdf, i.e. a file type, and with createChooser you're basically asking which apps can open this file type.

Now, there's no such thing as an application/twitter file that can be opened, so that won't work. I'm not aware of any other way you can achieve what you want either.

share|improve this answer
So i will have to use as type (text/*) so it shows me all the posibilities including twitter? Or I have to write my own twitter status update for my app :) – wouter88 Jan 16 '10 at 11:57
It's indeed not an official MIME type. Hence, it is supported only by twitdroid – rds Mar 13 '11 at 18:52
sir share the image on twitter i try many code not get success plz hel me sir – Rishi Gautam Mar 23 at 12:03
sir i try to poast the image on wall of twitter sir please how to post the image on the wall of twitter , if u have a sample code please share with me thank you – Rishi Gautam Mar 24 at 4:21

From http://twidroid.com/plugins/

Twidroid’s ACTION_SEND intent

Intent sendIntent = new Intent(Intent.ACTION_SEND); 
sendIntent.putExtra(Intent.EXTRA_TEXT, "This is a sample message via Public Intent"); 
sendIntent.setType("application/twitter");   
startActivity(Intent.createChooser(sendIntent, null)); 
share|improve this answer
It's not an official MIME type. Hence, it is supported only by twitdroid – rds Dec 19 '11 at 16:08

These answers are all overly complex.

If you just do a normal url Intent that does to Twitter.com, you'll get this screen:

enter image description here

which gives you the option of going to the website if you have no Twitter apps installed.

String url = "https://twitter.com/intent/tweet?source=webclient&text=TWEET+THIS!";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.