How to add custom dialog for AccountPicker in android?

177 Views Asked by At

below is my code to get email accounts of device and I want to use custom dialog box for google's account picker:

Intent intent = AccountPicker.newChooseAccountIntent(
    null, 
    null,
    new String[] { GoogleAuthUtil.GOOGLE_ACCOUNT_TYPE },
    false,
    null,
    null,
    null,
    null
);

startActivityForResult(intent, 1);

It's showing a default dialog box, I want to change it to be like playstore's account switcher dialog, but I don't know how to add custom dialog in place of default dialog box in account picker.

0

There are 0 best solutions below