Skip to content

A reusable fragment to display links to social networks, the Play Store as well as recommendation and support email links

License

Notifications You must be signed in to change notification settings

saschpe/android-social-fragment

Repository files navigation

Android Social Fragment

Maven Central Android Arsenal License Build Status

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("[email protected]")
    .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

Screenshot 1

Screenshot 2

Screenshot 3

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.

About

A reusable fragment to display links to social networks, the Play Store as well as recommendation and support email links

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published