I am trying to make the users choose from a list of custom accounts of the same type using an AccountPicker.
Intent pickAccountIntent = AccountPicker.newChooseAccountIntent(null, null, new String[]{"com.home.customapp"}, true, null, null, null, null);
startActivityForResult(pickAccountIntent, 1);
I have 2 issues:
1.
According to the API, if the alwaysPromptForAccount
(4th parameter) is set to true the picker should be always visible.
However if there are no previous accounts of type "com.home.customapp", the picker activity is not displayed even if the alwaysPromptForAccount
is set to true
How can I make the picker be always visible even if there are no custom accounts?
2. How can the add account steps be customized on order to add a custom account, not a google account?
To add an account you can use:
Is this what you're looking for?