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.
How can I change the theme of the dialog into android:Theme.Holo.Light.
Instead of this
final Dialog dialog = new Dialog(DropPicupProcess.this);
Create your dialog like this..
Dialog dialog=new Dialog(DropPicupProcess.this,android.R.style.Theme_Holo_Light);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With