从其他应用程序打开Twitter应用程序并加载一些页面

时间:2011-08-01 16:33:31

标签: android twitter

有没有办法从我自己的应用程序中打开Twitter应用程序?

例如,我有自己的Android应用程序,我想使用Intent打开Twitter应用程序。 我怎样才能做到这一点? 我将非常感谢您提供示例的答案。

5 个答案:

答案 0 :(得分:9)

try {
   startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("twitter://user?screen_name=" + twitter_user_name)));
}catch (Exception e) {
   startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://twitter.com/#!/" + twitter_user_name)));
}

这应该为你做必要的工作。

答案 1 :(得分:6)

如果用户已经在手机上安装了Twitter,那么这样的事情应该照顾它:

    try{
            Intent intent = new Intent(Intent.ACTION_SEND);
            intent.putExtra(Intent.EXTRA_TEXT, "this is a tweet");
            intent.setType("text/plain");
            final PackageManager pm = getPackageManager();
            final List<?> activityList = pm.queryIntentActivities(intent, 0);
            int len =  activityList.size();
            for (int i = 0; i < len; i++) {
                final ResolveInfo app = (ResolveInfo) activityList.get(i);
                if ("com.twitter.android.PostActivity".equals(app.activityInfo.name)) {
                    final ActivityInfo activity=app.activityInfo;
                    final ComponentName name=new ComponentName(activity.applicationInfo.packageName, activity.name);
                    intent.addCategory(Intent.CATEGORY_LAUNCHER);
                    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
                    intent.setComponent(name);
                    startActivity(intent);
                    break;
                }
            }
      }
        catch(final ActivityNotFoundException e) {
            Log.i("twitter", "no twitter native",e );
        }

答案 2 :(得分:4)

扩展@ Chrishan的答案你可以打开twitter应用程序,根据uri执行不同的功能(下面列出了这个post

twitter://user?screen_name=lorenb
twitter://user?id=12345
twitter://status?id=12345
twitter://timeline
twitter://mentions
twitter://messages
twitter://list?screen_name=lorenb&slug=abcd
twitter://post?message=hello world
twitter://post?message=hello world&in_reply_to_status_id=12345
twitter://search?query=%23hashtag

e.g。

String uriStr = "twitter://post?message=hello world"
try {
    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(uriStr)));
}catch (Exception e) {
   //the user doesn't have twitter installed
}

注意:我只尝试了userpost,所以如果您遇到任何不起作用的请告诉我,我会更新此答案。

答案 3 :(得分:2)

我用这个:

Intent i = getOpenTwitterIntent(this, "UserName");
startActivity(i);

功能:

public static Intent getOpenTwitterIntent(Context c, String Username) {

        try {
            c.getPackageManager().getPackageInfo("com.twitter.android", 0);
            return new Intent(Intent.ACTION_VIEW, Uri.parse("twitter://user?screen_name="+ Username));
        } catch (Exception e) {
            return new Intent(Intent.ACTION_VIEW, Uri.parse("https://twitter.com/#!/" + Username));
        }
    }

如果设备中安装了Twitter应用程序,那么打开它,否则打​​开网页浏览器......

答案 4 :(得分:0)

private void showTwitter(){
        Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.setClassName("com.twitter.android", "com.twitter.android.ProfileActivity");    
        this.startActivity(intent);     
}