lewisjdeane / L-Dialogs

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

Light theme issue #26

Closed Chirag-Galani closed 10 years ago

Chirag-Galani commented 10 years ago

Hey mate, This is an awesome library. But, I am unable to do so although i commented mDarkTheme, passed false value in it. Since, I am using eclipse had to copy your src files, style and other values in my project. All worked good except this Light theme issue. :( Thanks for this lib. :) :+1:

StephaneBg commented 10 years ago

There is a bug in the CustomListDialog constructor. Call to super should be:

// Call super class constructor to create our dialog. super(new ContextThemeWrapper(_builder.mContext, _builder.mIsDark ? R.style.Dark : R.style.Light));

lewisjdeane commented 10 years ago

Ah yes, my apologies will be updated when I get home, sorry about this.