我的 Android 应用程序被配置为仅在横向模式下工作,因此我想将由我的应用程序的意图创建的电子邮件客户端也设置为横向模式。是否可以?
这是我的代码:
Intent i = new Intent(Intent.ACTION_SEND);
i.setType("text/xml");
i.putExtra(Intent.EXTRA_EMAIL, new String[]{"example@mail.com"});
i.putExtra(Intent.EXTRA_SUBJECT, "Feedback");
i.putExtra(Intent.EXTRA_TEXT, "");
try {
Intent chooser_intent = Intent.createChooser(i, "Send e-mail");
startActivity(chooser_intent);
} catch (android.content.ActivityNotFoundException ex) {
Toast.makeText(getApplicationContext(), "E-mail client not found", Toast.LENGTH_LONG).show();
}