Amit Jayant
Amit Jayant

Reputation: 2621

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.

Upvotes: 5

Views: 1701

Answers (1)

Sheharyar
Sheharyar

Reputation: 75820

Make sure you are using the right import.

Replace:

import android.app.AlertDialog

with:

import com.WazaBe.HoloEverywhere.app.AlertDialog;

Upvotes: 10

Related Questions