共享从 PreferenceScreen 发送的应用程序电子邮件
我正在尝试在我的 Android 应用程序中创建一个功能,该功能将允许用户将 Android 市场中我的应用程序的链接分享给他们想要通过电子邮件发送给的任何人。
在 preferences.xml
中,我创建了如下内容
<PreferenceScreen
android:title="Share the App"
android:summary="Share the App with your friends.">
<intent android:action="" />
</PreferenceScreen>
,我不确定应该在此处放置什么意图,以及在 PreferenceScreen
中单击“共享应用程序”时如何处理它。我想打开电子邮件并预先填充一个主题以及该主题中该应用程序的 Android Market 链接。
用户将输入电子邮件并将其发送给他们的朋友。
I am trying to create a feature in my Android App which will let users share the link to my app in android market to whoever they want to email it to.
In preferences.xml
I have created this as below
<PreferenceScreen
android:title="Share the App"
android:summary="Share the App with your friends.">
<intent android:action="" />
</PreferenceScreen>
I am not sure what intent should I put here and how I do I handle it when Share the App is clicked in PreferenceScreen
. I want to open Email and pre-populate it with a subject and the Android Market link of the App in the subject.
The user will enter the email and send it to their friends.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我所做的并且有效。
然后
然后我将其添加到 AndroidManifest.xml
我创建了一个 ShareApp.java 并在此处添加了代码。
它起作用了!顺便说一句,UrSettings 类是从 PreferenceActivity 扩展而来的。
Here is what I did and it worked.
preferences.xml
Then I added this to the AndroidManifest.xml
Then I created a ShareApp.java and added the code here.
And it worked!! By the way the UrSettings class is extended from PreferenceActivity.