The newChooseAccountIntent()
method from the AccountPicker
allows you to customise the text in the AccountPicker
"dialog" (actually an Activity
) by way of the descriptionOverrideText
argument:
public static Intent newChooseAccountIntent (Account selectedAccount, ArrayList<Account> allowableAccounts, String[] allowableAccountTypes, boolean alwaysPromptForAccount, String descriptionOverrideText, String addAccountAuthTokenType, String[] addAccountRequiredFeatures, Bundle addAccountOptions)
But the "dialog" also comes with a Title which is set by default to "Choose an account", for example as per the screenshot included in this post.
How do I customise this title, or even remove it entirely? The point is not so much that I want to change the wording, but that I want to be able to translate the wording into other languages... not great UI at the moment for users of my app that have everything else in their local language, but not the title of this "dialog".
For AccountPicker use below code to change the title: