I've just started developing a new Android application and integrated the Facebook API, my login looks like this:
https://i.stack.imgur.com/HCHh4.png
How can I customize the button of Facebook's login to look like my "Ingresar" button? (Size and font-family)
EDIT: This is the XML of the button, I took it from: Facebook for Developers Guide
<com.facebook.login.widget.LoginButton
android:id="@+id/login_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="30dp"
android:layout_marginBottom="30dp" />
<!-- Ingresar button -->
<android.support.v7.widget.AppCompatButton
android:id="@+id/btn_login"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/button_marginBottom"
android:layout_marginTop="@dimen/button_marginTop"
android:backgroundTint="@color/white"
android:padding="@dimen/button_padding"
android:text="@string/btnLogin_text"
android:textColor="@color/colorPrimaryDark" />
Thank you in advance...