Share Intent Builder

Additional

Language
Java
Version
v0.0.2 (Oct 8, 2015)
Created
Mar 25, 2015
Updated
Oct 26, 2016 (Retired)
Owner
cketti
Contributor
cketti
1
Activity
Badge
Generate
Download
Source code

Share Intent Builder

An Android Library for the type-safe creation of Share Intents.

Usage

Creating a simple share intent is as easy as this:

Intent shareIntent = ShareIntentBuilder.from(activity)
        .text("Text to share")
        .build();

ShareIntentBuilder also supports adding optional extras and directly launching the share action:

ShareIntentBuilder.from(activity)
        .text("Sharing is caring!")
        .subject("Very important message")
        .to("everyone@example.com")
        .cc("carebear@example.com")
        .share();

Of course sharing one or multiple data streams (see EXTRA_STREAM) is also supported.

ShareIntentBuilder.from(activity)
        // stream(Uri) will fetch the type using the ContentResolver
        // supplied by the activity (calls getType() on the content provider)
        .stream(MyContentProvider.getUriForItem(42))
        // you can avoid that by explicitly specifying the type
        .stream(Uri.parse("content://com.example.provider/23"), "image/png")
        .share();

According to the documentation supplying both EXTRA_TEXT and EXTRA_STREAM is not allowed. However, some receiving apps support this. So if you really have to, you can use ShareIntentBuilder to do this by calling ignoreSpecification() first.

ShareIntentBuilder.from(activity)
        .ignoreSpecification()
        .text("EXTRA_TEXT content that may or may not be used by the receiving app")
        .stream(Uri.parse("content://com.example.provider/42"), "application/octet-stream")
        .share();

Include the library

The easiest way to add the library to your project is via Gradle. Add the following lines to your build.gradle:

dependencies {
    compile 'de.cketti.share:share-intent-builder:0.0.2'
}

To tell Gradle where to find the library, make sure build.gradle also contains this:

repositories {
    mavenCentral()
}

Note: jcenter() - the new default when creating projects with Android Studio - will work as well.

License

Copyright 2015 cketti

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.