I Have a CustomView working on pre-Lollipop, now I tried to apply android:elevation
and android:translateZ
on Lollipop devices but doesn't seems to work.
<com.example.CustomView
android:id="@+id/myview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:elevation="10dp">
</com.example.CustomView>
What i missing?
As mentioned in Defining Shadows and Clipping Views
You should implement
ViewOutlineProvider
abstract class by which aView
builds itsOutline
, used for shadow casting and clippingRectangular CustomView
note: This feature is only supported by API21, pre API21 should use 9-patch.