changing theme of android dialog

Viewed 128

In my Android application I have set the theme of the app as

android:Theme.Holo.Light

I created the dialog as

final Dialog dialog = new Dialog(DropPicupProcess.this);

But when I pop up an dialogbox in the app it shows as below. enter image description here

How can I change the theme of the dialog into android:Theme.Holo.Light.

2 Answers
Related