Is it possible to set the theme of picker dialog ?
import com.google.android.gms.common.AccountPicker;
....
String[] accountTypes = new String[]{"com.google"};
Intent intent = AccountPicker.newChooseAccountIntent(null, null,
accountTypes, false, null, null, null, null);
activity.startActivityForResult(intent, REQUEST_CODE_PICK_ACCOUNT);
My base app theme is android:Theme.Light
but that dialog is dark.
Thanks.
If you wish to change the theme of the dialog, you should change the newChooseAccountIntent
to zza
and add two integer arguments. The first one is for overriding the theme and setting it to 1 will change the dialog theme to light.
String[] accountTypes = new String[]{"com.google"};
Intent intent = AccountPicker.zza(null, null, accountTypes, false, null, null, null, null, false, 1, 0);
startActivityForResult(intent, REQUEST_CODE_PICK_ACCOUNT);