我想显示“与Facebook联系”。如何更改显示“使用Facebook登录”的默认文字。
我正在使用android sdk版本4.18.0.Thanks。
<com.facebook.login.widget.LoginButton
android:id="@+id/connect_with_FB"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp" />
答案 0 :(得分:0)
试试这个
this.props.navigation.navigate('MyDealOffer',{userid3:4});
<强> UPD 强> 用你的代码:
<com.facebook.login.widget.LoginButton
xmlns:facebook="http://schemas.android.com/apk/res-auto"
facebook:com_facebook_login_text="Connect with Facebook"/>
答案 1 :(得分:0)
我使用这种方式,这是工作:
<com.facebook.login.widget.LoginButton
android:id="@+id/fragment_login_btn_loginWithFacebook"
xmlns:fb="http://schemas.android.com/apk/res-auto"
fb:login_text="Custom login text bla bla"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal" />
答案 2 :(得分:0)
将此行添加到您的代码中,您可以更改文本。
<com.facebook.login.widget.LoginButton
android:id="@+id/connect_with_FB"
facebook:com_facebook_login_text="addTextHere"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp" />