1

I need a dialog activity. So i defined the activity in my Manifest file with:

android:theme="@android:style/Theme.Dialog"

but this theme has old Gingerbread look with dark background and so on. I want to complete holo theme on my dialog activity... Is there a theme like Theme.Dialog.Holo.Light ?

laymelek
  • 418
  • 2
  • 15

1 Answers1

3

Use under activity tag:

<activity 

            android:theme="@android:style/Theme.Holo.Light.Dialog" >
</activity>
karan
  • 3,319
  • 1
  • 35
  • 44