17

与这个与 Facebook Android SDK 3.0 相关的问题类似......

是否可以在 SDK 3.5 中将我自己的图像用于 Facebook 登录按钮,而无需自定义 SDK 本身?

使用链接问题中给出的答案:

<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="" />

和:

final LoginButton button = (LoginButton) findViewById(R.id.login_button);
button.setBackgroundResource(R.drawable.facebook);

我看到两个带有新 SDK 的图像。我的图像(R.drawable.facebook)是一个带有白色“f”的大灰色背景。但是,我也看到了来自原始 facebook 按钮图标的白色小背景和透明的“f”覆盖在背景之上。请参阅与 SDK 3.5 登录按钮相关的 facebook 文档。我想完全删除原来的 facebook 图标。

4

1 回答 1

30

除了设置后台资源,还调用:

button.setCompoundDrawablesWithIntrinsicBounds(0,0,0,0);
于 2013-09-18T17:41:43.903 回答