ピッカーダイアログのテーマを設定することはできますか?
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);
私のベースアプリのテーマはですandroid:Theme.Lightが、そのダイアログは暗いです. ありがとう。