Skip to content

AlexLiuSheng/AndroidSystemShare

Repository files navigation

AndroidSystemShare Download

A sharing library supports text and multiple images based on android system sharing.This library is tiny because it uses android internal sharing function. Library is very useful when developers only need to share image or text to a certain platform or platforms, and do not care about the result of sharing.

GIF SHOW

include

compile 'com.allenliu:AndroidSystemShare:1.0.1'

usage

 AndroidShare share = new AndroidShare
                .Builder(this)
                .setPlatform(AndroidSharePlatform.INSTAGRAM)
                .setImageUris(imageUris)
                .setContent("test")
                .build();
        share.share();
  • support 11 platforms sharing

    • WECHAT
    • WECHAT_TIMELINE
    • QQ
    • QZONE
    • SINA
    • INSTAGRAM
    • FACEBOOK
    • WHATSAPP
    • TWITTER
    • GMAIL
    • SYSTEMSHARE
  • support multiple types sharing

    platform pure text image multi images
    WECHAT Y Y Y
    WECHAT_TIMELINE N Y Y
    QQ Y Y Y
    QZONE Y Y Y
    SINA Y Y Y
    INSTAGRAM N Y N
    FACEBOOK N Y Y
    WHATSAPP Y Y Y
    TWITTER Y Y N
    GMAIL N Y Y
    SYSTEMSHARE - - -

License

Apache 2.0

About

a multitype share library base android system share

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages