如何更改com.facebook.widget
用于显示标签的语言?我使用的是com.facebook.widget.LoginButton
,我的Android设备的系统语言设置为德语,但LoginButton
显示文本"登录Facebook"而不是"Mit Facebook anmelden"。我还检查了我的应用程序在Facebook开发者页面的本地化设置,默认是德语。
不包含德语本地化。
在你的布局中,设置自定义的login_text属性…
<com.facebook.widget.LoginButton
(usual attributes removed)
loginView:login_text="Whatever text you want" />
假设您在根元素上设置了loginView名称空间…
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:loginView="http://schemas.android.com/apk/res-auto"
(usual attributes removed)... >
在相同的示例中包含注销文本,它将是:
<com.facebook.widget.LoginButton
(usual attributes removed)
loginView:login_text="Whatever text you want"
loginView:logout_text="Your logout text" />