How to open Gmail Compose when a button is clicked in Android App?(在Android App中单击按钮时如何打开Gmail Compose?)
问题描述
我试图在我的 Android 应用程序中单击按钮时打开 Gmail 撰写屏幕.我需要谷歌的一些 API 密钥吗?或者我需要在我的按钮 onClickListener 中做什么?
I am trying to open up Gmail Compose screen when a button is clicked in my Android App. Do I need some API key for this from Google? or what do I need to do in my button onClickListener?
非常感谢任何形式的见解.
Any kind of insight is much appreciated.
推荐答案
不知道你们能不能专门推出gmail.你有没有在你的 onClickListener 中尝试过这个
I don't know that you can specifically launch gmail. Have you tried this in your onClickListener
Intent emailIntent = new Intent(Intent.ACTION_SEND);
emailIntent.setType("text/plain");
startActivity(emailIntent);
您可以在此处找到更多详细信息:Email android intent
You can find more details here: Email android intent
这篇关于在Android App中单击按钮时如何打开Gmail Compose?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在Android App中单击按钮时如何打开Gmail Compose?
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01