how to add shadow effect in alert dialog box in android

后端 未结 3 577
轻奢々
轻奢々 2021-01-03 15:53

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

3条回答
  •  借酒劲吻你
    2021-01-03 16:33

    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.

提交回复
热议问题