Facebook Like Button
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
- Declare FacebookLikeActivity in your AndroidManifest.xml:
<activity
android:name="com.shamanland.facebook.likebutton.FacebookLikeActivity"
android:label="@string/facebook"
android:theme="@style/Theme.Facebook.Like"
/>
- Insert one of possible buttons in your layout:
<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"
/>
<!-- 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:
<!-- 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.