1

ユーザーに「共有」オプションを表示するために、アプリケーションに次のコードを記述しました。

「メール」、「Gmail」、「Youtube」は見えますが、「Facebook」は見えません:(

try {

                Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); 
                emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,  mEvent.getName());  
                emailIntent.setType("plain/text");  
                emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, txtDesc.getText());
                startActivity(Intent.createChooser(emailIntent, "Send your email in:")); 

            } catch (Exception e) {
                Toast.makeText(getApplicationContext(),
                    "Email faild, please try again later!",
                    Toast.LENGTH_LONG).show();
                e.printStackTrace();
            }

「facebook」オプションを追加するには?

4

1 に答える 1

3

プレーンテキストの正しいMIMEタイプはtext/plain、ではなくplain/textです。それを試してみてください。

于 2012-12-21T15:45:38.787 に答える