2
  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?

4

2 回答 2

5

你可以试试这个代码:

private void facebooktaPaylas() {
    try {
        String facebookUri = "http://m.facebook.com/sharer.php?u=";
        String marketUri = "your sharing text");
        Intent shareOnFacebookIntent = new Intent(Intent.ACTION_VIEW,
                Uri.parse(facebookUri + marketUri));
        startActivity(shareOnFacebookIntent);
    } catch (Exception e) {
        e.printStackTrace();
    }
}

private void twitterdaPaylas() {
    try {
        String facebookUri = "http://mobile.twitter.com/home?status=";
        String marketUri = "your sharing text";
        Intent shareOnFacebookIntent = new Intent(Intent.ACTION_VIEW,
                Uri.parse(facebookUri + marketUri));
        startActivity(shareOnFacebookIntent);
    } catch (Exception e) {
        e.printStackTrace();
    }
}
于 2012-10-17T11:55:37.270 回答
1

如何将MIME类型更改为"text/*"

似乎 Facebook 和 Twitter 可以处理"text/plain"而不是"text/html".

于 2012-10-17T06:15:03.413 回答