Android偏好设置"发送反馈"

时间:2015-11-07 22:59:31

标签: android email android-intent preferences

我试图添加"发送反馈"我的设置中的选项。主题和文字工作正常。但是不接受电子邮件地址。我能做什么,电子邮件被接受了,因为这是我认为的重要内容!?

<Preference
    android:title="Send Feedback">
    <intent
        android:action="android.intent.action.SEND"
        android:mimeType="text/email">
        <extra
            android:name="android.intent.extra.EMAIL"
            android:value="mailto@email.com"/>
        <extra
            android:name="android.intent.extra.SUBJECT"
            android:value="Feedback"/>
        <extra
            android:name="android.intent.extra.TEXT"
            android:value="Text of Feedback"/>
    </intent>
</Preference>

1 个答案:

答案 0 :(得分:4)

试试这个

<Preference
    android:title="@string/pre_title_feedback"
    android:summary="@string/pre_summary_feedback">
    <intent
        android:action="android.intent.action.VIEW"
        android:data="mailto:my@email.address">
        <extra
            android:name="android.intent.extra.SUBJECT"
            android:value="Feedback"/>
        <extra
            android:name="android.intent.extra.TEXT"
            android:value="Text of Feedback"/>
    </intent>
</Preference>