Android Local Share

Source: Internet
Author: User


Ways to share:

private void nativeshare ()

{

Intent Intent = new Intent (Intent. Action_send);

Intent.settype ("Text/plain");

Intent.putextra (intent. Extra_text, "share content ..... ");

startactivity (Intent. Createchooser(Intent, "share title"));

}

How to customize apps and pages that are acceptable for sharing: Simply add the app to the activity where it's registered

<intent-filter>

< action android:name="Android.intent.action.SEND " />

                < category android:name = " Android.intent.category.BROWSABLE " />

< category android:name="Android.intent.category.d Efault " />


< Data Android:mimetype="text/*" />

</intent-filter>

Reference Example:

<activity

android:name="Com.chris.lr.slidemenu.MainActivity"

android:label="@string/app_name" >

<intent-filter>

< action android:name="Android.intent.action.MAIN" />


< category android:name="Android.intent.category.l Auncher " />


</intent-filter>

<intent-filter>

< action android:name="Android.intent.action.SEND " />

                < category android:name = " Android.intent.category.BROWSABLE " />

< category android:name="Android.intent.category.d Efault " />


< Data Android:mimetype="text/*" />

</intent-filter>

</ Activity >



Android Local Share

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.