I am using a facebook login button to let users log in to my service through facebook. but the default facebook login button is not according to my app design as expected. I want the facebook login button to be like the email button; round and "f" in the center (see attached picture). I tried to set a background of the button to a custom background.
Here's the code for custom button:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid
android:color="#E1C8FF"
/>
</shape>
and here's the button XML :
<com.facebook.login.widget.LoginButton
android:id="@+id/btn_facebook_signup"
android:layout_width="90dp"
android:layout_height="90dp"
android:layout_margin="8dp"
android:src="@drawable/ic_fb_login"
facebook:com_facebook_login_text=""
android:background="@drawable/round_button"/>
and is there any way to remove that white facebook icon from the button ??
