Hey guys, how can i add shadow to a shape?
My shape.xml: <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <gradient android:startColor="#272828" android:endColor="#272828" android:angle="90" /> <padding android:left="0px" android:top="10px" android:right="0px" android:bottom="10px" /> <corners android:bottomRightRadius="30px" android:bottomLeftRadius="30px" android:topLeftRadius="0.1dp" android:topRightRadius="0.1dp" /> </shape> I tried to add this shape as background to a linearlayout. After this i added following style to the linearlayout: <style name="shape_with_shadow"> <item name="android:background">@drawable/shape</item> <item name="android:shadowColor">#ff00ff</item> <item name="android:shadowDx">1.2</item> <item name="android:shadowRadius">1.5</item> </style> But i don't se any shadow. How can i fix that? please help, thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

