ShapeOfView icon indicating copy to clipboard operation
ShapeOfView copied to clipboard

Click also work out of custom shape

Open arefhosseini opened this issue 4 years ago • 0 comments

I have a custom shape in my layout & if I click on out of my shape It also works. That makes an issue to overlapping shapes.

<com.github.florent37.shapeofview.shapes.ArcView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:shape_arc_height="24dp"
    app:shape_arc_position="bottom">

    <View
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:clipChildren="false"
        android:background="@color/primaryColorGradient1"/>
</com.github.florent37.shapeofview.shapes.ArcView>

How can I solve it?

arefhosseini avatar Jul 30 '19 05:07 arefhosseini