1

我正在调用邮件意图

    ImageButton mail=(ImageButton)findViewById(R.id.mailgps);
    mail.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            setContentView(R.layout.mail);
            Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);  
            // TODO Auto-generated method stub
            emailIntent.setType("text/plain");
            String emailto[]={"myemail"};
            String subject="GPS User Report";
            String body="Welcome to Samarth Reporting service.Did you see an untracked Dustbin\n.A dustbin not at the right place??\nWant to suggest placement of a dustbin here.\nGo ahead we are all ears.\n.Your present location is\n Latitude: ";
            body=body +  "28.67890" + " and Longitudes: " + "79.78965";
            body=body + "\n\nTell us more.";
            emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,emailto);
            emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,subject);
            emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,body);

            startActivity(emailIntent);  



        }
    });

并获得这样的屏幕,它忽略了 EXTRA_EMAIL 属性以及 EXTRA_SUBJECT,然后正文出现在最底部。我该如何纠正这个。?

在此处输入图像描述

4

1 回答 1

0

好吧,这是一件非常愚蠢的事情。如前所述,我使用另一个 AVD 设置了电子邮件客户端,因此它运行良好。但在新的 AVD 上,我忽略了这一点。所以“首先”设置电子邮件客户端,然后去调用意图。尽管如此,系统应该有更好的方法来处理这种情况,而不是显示一个奇怪的空白屏幕。

于 2012-04-24T08:55:32.403 回答