我使用facebookAccountKitSdk的AccountKitActivity。
我可以更改AccountKitActivity的标题吗?当前,标题是“输入您的手机号码”。
我已经检查并找到了此方法,但不知道如何执行。
public AccountKitConfiguration.AccountKitConfigurationBuilder setUIManager(UIManager uiManager)
谢谢!
答案 0 :(得分:0)
这是黑暗中的镜头,因为我现在没有Android Studio。但是因为AccountKitActivity
扩展了AppCompatActivity
,所以我猜您会以相同的方式设置标题吗?
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.my_fancy_layout);
setTitle(R.string.my_fancy_layout_title);
}
或者如果您正在使用工具栏...
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
toolbar.setTitle(R.string.your_title)