Holo theme does not apply to dialogs when using holoeverywhere library

I am using the ChristopheVersieux HoloEverywhere library in my Android project.

Everything is fine except for the dialogs. Holo styles do not apply to AlertDialogs and user dialogs.

+6
source share
1 answer

Make sure you use the correct import .

Replace:

 import android.app.AlertDialog 

from

 import com.WazaBe.HoloEverywhere.app.AlertDialog; 
+11
source

Source: https://habr.com/ru/post/923191/


All Articles