7

我是安卓的初学者。我需要知道是否有任何打开“创建消息”窗口的意图。我试过这个代码 -

Intent i = new Intent(Intent.ACTION_SEND);
i.setType("text/plain");

但是,它提出了,Gmail, Email & Message我只需要提出信息。在我的应用程序中,当我按下按钮时,我必须集成它。有人能知道吗?引导我。

4

5 回答 5

9

您可以在您的 xml 文件中添加

android:onClick = "onClick" 

并在活动中:

//main buttons listener
public void onClick(View view)
{
    switch (view.getId())
    {
            case R.id.sms:
            Intent intentsms = new Intent( Intent.ACTION_VIEW, Uri.parse( "sms:" + "" ) );
            intentsms.putExtra( "sms_body", "Test text..." );
            startActivity( intentsms );
            break;
    }
} 
于 2012-02-15T09:29:24.027 回答
4

试试这个:

Intent i = new Intent(Intent.ACTION_SEND);
i.setType("text/plain");
i.putExtra(Intent.EXTRA_EMAIL  , new String[] { "recipient@example.com" });
i.putExtra(Intent.EXTRA_SUBJECT, "subject of email");
i.putExtra(Intent.EXTRA_TEXT   , "body of email");
try {
    startActivity(Intent.createChooser(i, "Send mail..."));
} catch (android.content.ActivityNotFoundException ex) {
    Toast.makeText(MyActivity.this, "There are no email clients installed.", Toast.LENGTH_SHORT).show();
}
于 2012-02-15T09:34:29.047 回答
1

这将帮助您:

Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.setType("vnd.android-dir/mms-sms");
startActivity(sendIntent);
于 2012-02-15T09:32:36.193 回答
1

对所有应用程序都像这样使用将接受此意图

case R.id.action_shareapp:
            Intent send = new Intent(Intent.ACTION_SEND);
            send.setType("text/plain");
            send.putExtra(
                    Intent.EXTRA_TEXT,
                    "Checkout this coool App follow this link. https://play.google.com/store/apps/details?id=com.picknget.android");
            startActivity(Intent.createChooser(send, "Share with"));
            break;
于 2014-10-18T05:27:33.847 回答
0

我想这应该可行:

i.addCategory(Intent.CATEGORY_DEFAULT);
i.setType("vnd.android-dir/mms-sms");
于 2012-02-15T09:30:51.237 回答