以下のコードを使用して意図的にTwitterを起動しましたが、機能しません。スマートフォンにTwitterアプリがインストールされています。
Intent shareIntent = new Intent(Android.content.Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Android.content.Intent.EXTRA_TEXT, "Content to share");
PackageManager pm = contexto.getPackageManager();
List<ResolveInfo> activityList = pm.queryIntentActivities(shareIntent, 0);
for (final ResolveInfo app : activityList) {
if ("com.Twitter.Android.PostActivity".equals(app.activityInfo.name)) {
final ActivityInfo activity = app.activityInfo;
final ComponentName name = new ComponentName(activity.applicationInfo.packageName, activity.name);
shareIntent.addCategory(Intent.CATEGORY_LAUNCHER);
shareIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
shareIntent.setComponent(name);
contexto.startActivity(shareIntent);
break;
}
}
アクティビティを呼び出そうとすると例外が発生します:
Android.content.ActivityNotFoundException:明示的なアクティビティクラスが見つかりません{com.Twitter.Android/com.Twitter.Android.PostActivity};このアクティビティをAndroidManifest.xmlで宣言しましたか?
通常、ユーザーのフィードを起動するため
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/USERID_OR_PROFILENAME"));
}
this.startActivity(intent);
ポストインテントの場合
Intent tweetIntent = new Intent(Intent.ACTION_SEND);
tweetIntent.putExtra(Intent.EXTRA_TEXT, "This is a Test.");
tweetIntent.setType("text/plain");
PackageManager packManager = getPackageManager();
List<ResolveInfo> resolvedInfoList = packManager.queryIntentActivities(tweetIntent, PackageManager.MATCH_DEFAULT_ONLY);
boolean resolved = false;
for(ResolveInfo resolveInfo: resolvedInfoList){
if(resolveInfo.activityInfo.packageName.startsWith("com.Twitter.Android")){
tweetIntent.setClassName(
resolveInfo.activityInfo.packageName,
resolveInfo.activityInfo.name );
resolved = true;
break;
}
}
if(resolved){
startActivity(tweetIntent);
}else{
Toast.makeText(this, "Twitter app isn't found", Toast.LENGTH_LONG).show();
}
ユーザーのフィードインテントを少し修正しました(おかげでTaranfxに変更)(変更ser_id=> screen_name):
public static void startTwitter(Context context) {
Intent intent = null;
try {
// get the Twitter app if possible
context.getPackageManager().getPackageInfo("com.Twitter.Android", 0);
intent = new Intent(Intent.ACTION_VIEW, Uri.parse("Twitter://user?screen_name=<place_user_name_here>"));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
return intent;
} catch (Exception e) {
// no Twitter app, revert to browser
intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://Twitter.com/<place_user_name_here>"));
}
startActivity(intent);
}