81

我正在寻找某种方式来启动 Twitter 应用程序并从我的应用程序中打开指定页面,而无需 webview。我在这里找到了 Facebook 的解决方案: Opening facebook app on specified profile page

我需要类似的东西。

编辑 我刚刚找到了一个解决方案:

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

6 回答 6

48

根据 fg.radigales 的回答,如果可能的话,这就是我用来启动应用程序的方法,否则会退回到浏览器:

Intent intent = null;
try {
    // get the Twitter app if possible
    this.getPackageManager().getPackageInfo("com.twitter.android", 0);
    intent = new Intent(Intent.ACTION_VIEW, Uri.parse("twitter://user?user_id=USERID"));
    intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
} catch (Exception e) {
    // no Twitter app, revert to browser
    intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://twitter.com/PROFILENAME"));
}
this.startActivity(intent);

更新

添加intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);以解决 Twitter 在我的应用程序中打开而不是作为新活动打开的问题。

于 2012-12-12T16:12:38.670 回答
42

这对我有用:twitter://user?user_id=id_num

于 2012-09-21T11:56:21.393 回答
10

通过 2 个步骤从使用 Android 的其他应用打开 Twitter 应用上的页面:

1.只需粘贴以下代码(在按钮单击或您需要的任何地方)

Intent intent = null;
try{
   // Get Twitter app
   this.getPackageManager().getPackageInfo("com.twitter.android", 0);
   intent = new Intent(Intent.ACTION_VIEW, Uri.parse("twitter://user?user_id=USER_ID"));
   intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
} catch () {
   // If no Twitter app found, open on browser
   intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://twitter.com/USERNAME"));
}

2.intent = new Intent(Intent.ACTION_VIEW, Uri.parse("twitter://user?user_id=USER_ID"));

要获取 USER_ID,只需输入用户名https://tweeterid.com/并在其中获取 Twitter 用户 ID

参考https ://solutionspirit.com/open-page-twitter-application-android/

希望它会有所帮助:)

于 2017-10-19T12:05:18.343 回答
4

我的答案建立在 fg.radigales 和 Harry 被广泛接受的答案之上。如果用户安装了 Twitter 但已禁用(例如通过使用 App Quarantine),则此方法将不起作用。将选择 Twitter 应用程序的意图,但由于它被禁用,它将无法处理它。

代替:

getPackageManager().getPackageInfo("com.twitter.android", 0);
intent = new Intent(Intent.ACTION_VIEW, Uri.parse("twitter://user?user_id=2343965036"));

您可以使用以下内容来决定要做什么:

PackageInfo info = getPackageManager().getPackageInfo("com.twitter.android", 0);
if(info.applicationInfo.enabled)
    intent = new Intent(Intent.ACTION_VIEW, Uri.parse("twitter://user?user_id=2343965036"));
else
    intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://twitter.com/wrkoutapp"));
于 2014-02-18T16:43:14.307 回答
1

试试这个代码片段。它会帮助你。

//Checking If the app is installed, according to the package name
        Intent intent = new Intent();
        intent.setType("text/plain");
        intent.setAction(Intent.ACTION_SEND);
        final PackageManager packageManager = getPackageManager();
        List<ResolveInfo> list = packageManager.queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);

        for (ResolveInfo resolveInfo : list) 
        {
            String packageName = resolveInfo.activityInfo.packageName;

            //In case that the app is installed, lunch it.
            if (packageName != null && packageName.equals("com.twitter.android")) 
            {
                try
                {
                    String formattedTwitterAddress = "twitter://user/" ;
                    Intent browseTwitter = new Intent(Intent.ACTION_VIEW, Uri.parse(formattedTwitterAddress));
                                    long twitterId = <Here is the place for the twitter id>
                    browseTwitter.putExtra("user_id", twitterId);
                    startActivity(browseTwitter);

                    return;
                }
                catch (Exception e) 
                {

                }
            }
        }

        //If it gets here it means that the twitter app is not installed. Therefor, lunch the browser.
        try
        { 
                            String twitterName = <Put the twitter name here>
            String formattedTwitterAddress = "http://twitter.com/" + twitterName;
            Intent browseTwitter = new Intent(Intent.ACTION_VIEW, Uri.parse(formattedTwitterAddress)); 
            startActivity(browseTwitter);
        }
        catch (Exception e) 
        {

        }
于 2012-06-19T16:40:21.033 回答
0

对我来说,如果你有 Twitter 应用程序或访问网络浏览器,它会打开 Twitter 应用程序:

 Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://twitter.com/"+"USERID"));
                    startActivity(intent);
于 2019-07-21T15:26:09.247 回答