我正在寻找一些方法来启动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]")));
}
答案 0 :(得分:43)
基于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在我的应用内部开放而不是新活动的问题。
答案 1 :(得分:41)
这对我有用:twitter://user?user_id=id_num
答案 2 :(得分: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"));
答案 3 :(得分:4)
使用Android在其他应用程序上打开Twitter应用程序,分为2个步骤:
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,只需编写用户名http://gettwitterid.com/并在其中获取Twitter用户ID
参考:https://solutionspirit.com/open-page-twitter-application-android/
希望它会有所帮助:)
答案 4 :(得分: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)
{
}
答案 5 :(得分:0)
对我来说,这样做的窍门是打开Twitter应用程序(如果有)或访问Web浏览器:
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://twitter.com/"+"USERID"));
startActivity(intent);