从PreferenceScreen通过Intent共享链接

时间:2013-10-31 07:48:55

标签: android xml android-intent share preferencescreen

我正在使用此代码在Play商店中显示应用:

    <PreferenceScreen android:title="Please rate and comment" >
        <intent
            android:action="android.intent.action.VIEW"
            android:data="https://play.google.com/store/apps/details?id=com.chovanec.square" />
    </PreferenceScreen>

但我想分享这个链接。我该怎么做?这不起作用:

    <PreferenceScreen android:title="Please rate and comment" >
        <intent
            android:action="android.intent.action.SHARE"
            android:data="https://play.google.com/store/apps/details?id=com.chovanec.square" />
    </PreferenceScreen>

1 个答案:

答案 0 :(得分:1)

试试这个:

http://mobile.tutsplus.com/tutorials/android/android-sdk-implement-a-share-intent/

您可以尝试从github下载插件。