i want to add shadow effect in alert dialog box . i want this type of shadow effect in my dialog box here i post 3 files first is style.xml second is theme.java or third fil
I know I'm too late. However it might help others who are in need and who want to achieve this in a simple way. Just add this to your parent layout in xml.
android:background="@android:drawable/dialog_holo_light_frame"
for example:
So here LinearLayout is your parent. so adding,
android:background="@android:drawable/dialog_holo_light_frame"
will do it.
Hope it helps. Thanks.