Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Holo theme not applying to dialogs when using holoeverywhere library

I am using ChristopheVersieux's HoloEverywhere library in my Android project.

Everything is fine except for the dialogs. Holo styles are not applying on AlertDialogs and custom dialogs.

like image 547
Amit Jayant Avatar asked Aug 18 '12 15:08

Amit Jayant


1 Answers

Make sure you are using the right import.

Replace:

import android.app.AlertDialog

with:

import com.WazaBe.HoloEverywhere.app.AlertDialog;
like image 147
Sheharyar Avatar answered Nov 11 '22 14:11

Sheharyar