Intent i = new Intent(Intent.ACTION_SEND);
i.setType("text/html");
String str = et.getText().toString();
i.putExtra(android.content.Intent.EXTRA_TEXT,str);
startActivity(Intent.createChooser(i,"Share using"));
我无法在 Android 中使用此代码打开 Facebook 和 Twitter,但其他应用程序(如 Gmail 和 Skype)已成功打开。为什么?以及如何打开 Facebook 和 Twitter?