Android Social Fragment

Social Network Fragment for Android.

License

License

GroupId

GroupId

de.peilicke.sascha
ArtifactId

ArtifactId

android-social-fragment
Last Version

Last Version

2.1.1
Release Date

Release Date

Type

Type

aar
Description

Description

Android Social Fragment
Social Network Fragment for Android.
Project URL

Project URL

https://github.com/saschpe/android-social-fragment
Source Code Management

Source Code Management

https://github.com/saschpe/android-social-fragment

Download android-social-fragment

How to add to project

<!-- https://jarcasting.com/artifacts/de.peilicke.sascha/android-social-fragment/ -->
<dependency>
    <groupId>de.peilicke.sascha</groupId>
    <artifactId>android-social-fragment</artifactId>
    <version>2.1.1</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/de.peilicke.sascha/android-social-fragment/
implementation 'de.peilicke.sascha:android-social-fragment:2.1.1'
// https://jarcasting.com/artifacts/de.peilicke.sascha/android-social-fragment/
implementation ("de.peilicke.sascha:android-social-fragment:2.1.1")
'de.peilicke.sascha:android-social-fragment:aar:2.1.1'
<dependency org="de.peilicke.sascha" name="android-social-fragment" rev="2.1.1">
  <artifact name="android-social-fragment" type="aar" />
</dependency>
@Grapes(
@Grab(group='de.peilicke.sascha', module='android-social-fragment', version='2.1.1')
)
libraryDependencies += "de.peilicke.sascha" % "android-social-fragment" % "2.1.1"
[de.peilicke.sascha/android-social-fragment "2.1.1"]

Dependencies

runtime (2)

Group / Artifact Type Version
androidx.appcompat » appcompat jar 1.2.0
androidx.constraintlayout » constraintlayout jar 2.0.4

Project Modules

There are no modules declared in this project.

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.

Versions

Version
2.1.1
2.1.0