Home

Awesome

Android Social Fragment

Maven Central Android Arsenal License Build Status <a href="http://www.methodscount.com/?lib=saschpe.android%3Asocial-fragment%3A2.0.1"><img src="https://img.shields.io/badge/Methods and size-core: 100 | deps: 19640 | 25 KB-e91e63.svg"/></a>

A reusable fragment to display links to social networks, the Play Store as well as recommendation and support email links. The fragment tries to open installed apps on the user's device first and resorts to the web browser otherwise.

Usage

Use the SocialFragment.Builder class to set up a new SocialFragment. Only the values provided will appear.

// Set up social fragment
SocialFragment fragment =  new SocialFragment.Builder()
    // Mandatory
    .setApplicationId(BuildConfig.APPLICATION_ID)
    // Optional
    .setApplicationName(getString(R.string.app_name))
    .setContactEmailAddress("saschpe@example.com")
    .setFacebookGroup("466079123741258")
    .setGooglePlusGroup("116602691405798233571")
    .setTwitterProfile("saschpe")
    // Visual customization
    .setHeaderTextColor(R.color.accent)
    .build();

// Attach it to the parent activity
getSupportFragmentManager().beginTransaction()
    .add(R.id.fragment_placeholder,fragment)
    .commit();

Screenshots

<img alt="Screenshot 1" src="assets/device-art/social-fragment-1.png" width="256" /> <img alt="Screenshot 2" src="assets/device-art/social-fragment-2.png" width="256" /> <img alt="Screenshot 3" src="assets/device-art/social-fragment-3.png" width="256" />

Download

Artifacts are published to Maven Central:

repositories {
    mavenCentral()
}

dependencies {
    implementation("de.peilicke.sascha:android-social-fragment:2.1.1")
}

In use by

License

Copyright 2017 Sascha Peilicke

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.