Android - Adding A Facebook Share Button

I have gotten a lot of questions about adding a basic share button to your android app from one of my previous posts, so I decided to add a new tutorial that shows just how to add a basic share button.

The purpose of this tutorial is to show you how to add a Facebook Share button to your Android Application.

For this tutorial I was using: Android Studio 1.1.0, and Facebook SDK v4.0.0. You should be able to follow along with other versions of this software.

In order to follow along you will need the following:

  • Android Studio. If you do not already have this installed, you can get a copy from here: Android Studio. Just follow the download and install instructions from the website to get started.
  • You will need to have an existing project already created in Android Studio that is integrated with the Facebook SDK. If you do not have one, you can follow this tutorial: Android Facebook Integration Tutorial
If you have completed the following steps, we can get started.

1. Open up your Android Studio project, and navigate to your Android Manifest file. Once this is open, you will want to add the following activity:

2. Now, you will have to set up a content provider in your Android Manifest file. You will want to add the following code and replace "{APP_ID}" with your App Id:

3. To actually share your content, we will have to set up a Share Button for your application. To start with, open your "strings.xml" file located here:


4. In this file, add the following: <string name="share">Share</string>

5. Next, we will add the Share button to our "activity_main.xml" file. Open this file and add the following code:

You will want to update the "layout_width" and the "layout_height" with appropriate values for your application.

6. Now that we have the button setup, we will want to update our "MainActivity.java" file to add the button to our app. Once the button is added, we are going to define the content that we would like to share, for this tutorial we are going to share a link. Once the content is created, then we just need setup our button to share that content.

Here is an example of what your "MainActivity.java" file will look like if all you have is the share button:


Now, when you test out your application, you should be able to click the Share Button, login to your Facebook account, and then share the link to your wall.

Summary: This tutorial showed you how to add a Facebook Share Button to your application, and how to share a link.