florent37 / ShapeOfView

Give a custom shape to any android view, Material Design 2 ready
Apache License 2.0
3.12k stars 400 forks source link

RoundRectView will display an error after adding a shadow #58

Open tcqq opened 5 years ago

tcqq commented 5 years ago

@florent37 RoundRectView will display an error after adding a shadow.

        <com.github.florent37.shapeofview.shapes.RoundRectView
            android:id="@+id/compose_message_container"
            android:layout_width="match_parent"
            android:layout_height="48dp"
            android:layout_marginStart="8dp"
            android:layout_marginEnd="8dp"
            android:layout_marginBottom="12dp"
            android:elevation="1dp"
            app:shape_roundRect_bottomLeftRadius="24dp"
            app:shape_roundRect_bottomRightRadius="24dp"
            app:shape_roundRect_topLeftRadius="24dp"
            app:shape_roundRect_topRightRadius="24dp"
            app:shape_roundRect_borderColor="@color/red"
            app:shape_roundRect_borderWidth="2dp">

image