我想知道如何在菜单栏中创建一个包含英语、马来西亚和中文语言的微调器
When one of the languages is selected example English the English resources will be activated
如果选择中文,将激活中文资源,如果选择马来西亚语,将激活马来西亚资源
我想知道如何在菜单栏中创建一个包含英语、马来西亚和中文语言的微调器
When one of the languages is selected example English the English resources will be activated
如果选择中文,将激活中文资源,如果选择马来西亚语,将激活马来西亚资源
在 ImageView 点击,写这段代码,
Intent email = new Intent(Intent.ACTION_SEND);
email.putExtra(Intent.EXTRA_EMAIL, new String[]{"scheduling@epiclanguage.com"});
email.putExtra(Intent.EXTRA_SUBJECT, "subject");
email.putExtra(Intent.EXTRA_TEXT, "message");
email.setType("message/rfc822");
startActivity(Intent.createChooser(email, "Choose an Email client :"));