Facebook Like Button

Implementation of Facebook social plugin 'Like' for Android

Лицензия

Лицензия

Группа

Группа

com.shamanland
Идентификатор

Идентификатор

facebook-like-button
Последняя версия

Последняя версия

0.1.8
Дата

Дата

Тип

Тип

aar
Описание

Описание

Facebook Like Button
Implementation of Facebook social plugin 'Like' for Android
Ссылка на сайт

Ссылка на сайт

http://blog.shamanland.com/p/facebook-like-button.html
Система контроля версий

Система контроля версий

https://github.com/shamanland/facebook-like-button

Скачать facebook-like-button

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.shamanland/facebook-like-button/ -->
<dependency>
    <groupId>com.shamanland</groupId>
    <artifactId>facebook-like-button</artifactId>
    <version>0.1.8</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/com.shamanland/facebook-like-button/
implementation 'com.shamanland:facebook-like-button:0.1.8'
// https://jarcasting.com/artifacts/com.shamanland/facebook-like-button/
implementation ("com.shamanland:facebook-like-button:0.1.8")
'com.shamanland:facebook-like-button:aar:0.1.8'
<dependency org="com.shamanland" name="facebook-like-button" rev="0.1.8">
  <artifact name="facebook-like-button" type="aar" />
</dependency>
@Grapes(
@Grab(group='com.shamanland', module='facebook-like-button', version='0.1.8')
)
libraryDependencies += "com.shamanland" % "facebook-like-button" % "0.1.8"
[com.shamanland/facebook-like-button "0.1.8"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

Facebook Like Button

Build Status

Implementation of Facebook 'Like' social plugin for Android.

Official Facebook SDK does not provide such component for Android.

This library uses WebView to display <iframe> based plugin.

Project page

http://blog.shamanland.com/p/facebook-like-button.html

Gradle dependency

dependencies {
    compile 'com.shamanland:facebook-like-button:0.1.8'
}

Screenshots

Easy integration with ListView.

Various layout available for any of your purposes.

Custom web-page will be shown with <iframe> plugin.

User will be asked to login on official Facebook site.

Original Facebook <iframe> based plugin works inside WebView.

You can set up any of Facebook options.

How to use

  1. Declare FacebookLikeActivity in your AndroidManifest.xml:
<activity
    android:name="com.shamanland.facebook.likebutton.FacebookLikeActivity"
    android:label="@string/facebook"
    android:theme="@style/Theme.Facebook.Like"
    />
  1. Insert one of possible buttons in your layout:

Single 'Like' button: 9

<com.shamanland.facebook.likebutton.FacebookLikeButton
        style="@style/Widget.FacebookLikeButton"
        app:pageUrl="http://blog.shamanland.com/"
        app:pageTitle="Developer's notes"
        app:pageText="This is blog about Android development."
        app:pagePicture="@drawable/ic_launcher"
        />

'Like' plugin with box: 10

<!-- FacebookLikePlugin extends LinearLayout -->
<com.shamanland.facebook.likebutton.FacebookLikePlugin
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        >
    <com.shamanland.facebook.likebutton.FacebookLikeButton
            style="@style/Widget.FacebookLikeButton"
            app:pageUrl="http://blog.shamanland.com/"
            app:pageTitle="Developer's notes"
            app:pageText="This is blog about Android development."
            app:pagePicture="@drawable/ic_launcher"
            />
    <com.shamanland.facebook.likebutton.FacebookLikeBox
            style="@style/Widget.FacebookLikeBox"
            app:calloutMarker="left"
            />
</com.shamanland.facebook.likebutton.FacebookLikePlugin>

'Like' plugin with box above, custom name: 11

<!-- FacebookLikePlugin extends LinearLayout -->
<com.shamanland.facebook.likebutton.FacebookLikePlugin
        android:layout_width="80dp"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        >
    <com.shamanland.facebook.likebutton.FacebookLikeBox
            style="@style/Widget.FacebookLikeBox"
            android:layout_width="match_parent"
            app:calloutMarker="bottom"
            />
    <com.shamanland.facebook.likebutton.FacebookLikeButton
            style="@style/Widget.FacebookLikeButton"
            android:layout_width="match_parent"
            android:text="@string/share"
            app:pageUrl="http://blog.shamanland.com/"
            app:pageTitle="Developer's notes"
            app:pageText="This is blog about Android development."
            app:pagePicture="@drawable/ic_launcher"
            />
</com.shamanland.facebook.likebutton.FacebookLikePlugin>

License

Copyright 2014 ShamanLand.Com

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.
com.shamanland

ShamanLand

Версии библиотеки

Версия
0.1.8
0.1.7
0.1.6