1
我想在Facebook SDK 4.0(Android)中自定義登錄按鈕,但沒辦法......我正在尋找Fb文檔但沒有結果。請任何想法嗎?自定義按鈕與Facebook SDK 4(Android)
在此先感謝!
我想在Facebook SDK 4.0(Android)中自定義登錄按鈕,但沒辦法......我正在尋找Fb文檔但沒有結果。請任何想法嗎?自定義按鈕與Facebook SDK 4(Android)
在此先感謝!
您的按鈕
<com.facebook.widget.LoginButton
xmlns:fb="http://schemas.android.com/apk/res-auto"
android:id="@+id/login_button"
android:layout_width="249dp"
android:layout_height="45dp"
android:layout_above="@+id/textView1"
android:layout_centerHorizontal="true"
android:layout_gravity="center_horizontal"
android:layout_marginBottom="30dp"
android:layout_marginTop="30dp"
android:contentDescription="@string/login_desc"
android:scaleType="centerInside"
fb:login_text=""
fb:logout_text="" />
,並在活動
LoginButton authbutton = (LoginButton) findViewById(R.id.login_button);
authbutton.setBackgroundResource(R.drawable.facebook);
authButton.setCompoundDrawablesWithIntrinsicBounds(0, 0, 0,0);
在新的API com.facebook.widget.LoginButton似乎被com.facebook.login.widget.LoginButton取代 – giozh