Reputation: 887
I using the AccountKitActivity of the facebookAccountKitSdk.
Can I change the title of the AccountKitActivity? Currently, the title is "Enter your mobile number".
I've checked and find out this method, but don't know how to do it.
public AccountKitConfiguration.AccountKitConfigurationBuilder setUIManager(UIManager uiManager)
Thanks!
Upvotes: 0
Views: 57
Reputation: 14850
This is a shot in the dark because I don't have Android Studio in from of me right now. But because AccountKitActivity
extends the AppCompatActivity
, I'm guessing you would set the title in the same way?
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.my_fancy_layout);
setTitle(R.string.my_fancy_layout_title);
}
Or if you're using tool bars...
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
toolbar.setTitle(R.string.your_title)
Upvotes: 0