Am trying to add elevation to my layouts in styles but the android:elevation
is only available for lollipop not pre lollipop. This is my layout in v21.
My styles for v14
<style name="AppBaseTheme" parent="Theme.AppCompat">
<!-- API 14 theme customizations can go here. -->
<android:elevation="4dp"> // Doesn't work here
</style>
Is it possible to achieve this effect? Any pointers will be great. Thanks.