gpt4 book ai didi

java - 检查检查列表中的元素是否已勾选并通过电子邮件发送?

转载 作者:行者123 更新时间:2023-12-01 13:18:35 25 4
gpt4 key购买 nike

Intent next = new Intent(Intent.ACTION_SENDTO);
next.setData(Uri.parse("mailto:zuron7@gmail.com"));
next.putExtra(Intent.EXTRA_SUBJECT, "Attendance");
String message = "";
Resources r = getResources();
String name = getPackageName();
int[] ids = new int[3];
for(int i =0; i<3;i++){
String x = "check"+i;
ids[i]= r.getIdentifier(x,"id", name);
}
for(int i = 0; i<3;i++){
CheckBox checkbox = (CheckBox) findViewById(ids[i]);
if(checkbox.isChecked()){
message=message+getResources().getString(R.string.Swag1);
}
}
next.putExtra(Intent.EXTRA_TEXT,message);
if (next.resolveActivity(getPackageManager()) != null)
startActivity(next);

当我在手机上运行该应用程序并点击启动此方法的按钮时,它意外停止。我不太确定问题出在哪里。我基本上想记录一组学生的出勤情况,并将缺席者的姓名发送给协调员。

最佳答案

也许这可以解决您的问题:ACTION_SENDTO for sending an email

基本上,您应该尝试通过 setData 中的 URI 传递您的主题和消息。

关于java - 检查检查列表中的元素是否已勾选并通过电子邮件发送?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22244242/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com