lewisjdeane / L-Dialogs

A small library replicating the new dialogs in android L.
567 stars 100 forks source link

Dialog appers black on 2.3 Gingerbread even as darktheme ist set to false #20

Closed MDXDave closed 10 years ago

MDXDave commented 10 years ago

android-l-dialog

 CustomDialog.Builder builder = new CustomDialog.Builder(this, "Bestätigen","Hinzufügen abbrechen");
        builder.negativeText("Schließen");
        builder.darkTheme(false);
        builder.content("Möchtest du das Hinzufügen einer neuen Prüfung wirklich abbrechen?");
        builder.titleAlignment(BaseDialog.Alignment.LEFT); // Use either Alignment.LEFT, Alignment.CENTER or Alignment.RIGHT
        builder.titleColor(R.color.app_blau); // int res, or int colorRes parameter versions available as well.#
        CustomDialog customDialog = builder.build();
        customDialog.show();

Any fix or are you not support Android before ICS?

lewisjdeane commented 10 years ago

Hmm I'll take a look, I haven't tested in on devices pre ICS but I'll try and fix it.

soyangel commented 10 years ago

I have patched a quick & dirty solution to this, please take a look https://github.com/lewisjdeane/L-Dialogs/pull/25

lewisjdeane commented 10 years ago

Should be fixed in latest update.

yoavst commented 10 years ago

@lewisjdeane it wasn't fixed.