Как обрезать элементы в списке слоев, которые можно нарисовать относительно радиуса угла, определенного из другого элемента - PullRequest
0 голосов
/ 14 марта 2020

Как показано на рисунке ниже, я не могу обрезать углы слоя, соответствующего другому слою. Есть ли способ сделать это, что я здесь скучаю? Я хочу обрезать все, что выходит за угловой радиус.

Unintended extra from one of the layers

Вот это XML

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/darkColor">
    <shape android:shape="rectangle">
        <solid android:color="@color/color_e95252" />
        <corners android:radius="16dp"/>

    </shape>
</item>
<item android:id="@+id/lightColor1"
    android:bottom="40dp"
    android:right="300dp">
    <shape android:shape="rectangle">
        <solid android:color="@color/color_ea5f5f" />
        <corners android:radius="16dp"/>

    </shape>
</item>

**The item below is kinda unnecessary**
<item android:id="@+id/lightColor2"
    android:right="90dp"
    android:top="-40dp"
    android:bottom="-10dp"
    android:left="10dp"
    android:width="300dp"
    >

  **This is where the problem occurs**


    <rotate android:fromDegrees="8">
        <shape android:shape="rectangle">
            <solid android:color="@color/color_ea5f5f" />
            <corners
                android:bottomRightRadius="300dp"
                android:topLeftRadius="@dimen/dim_16"
                android:bottomLeftRadius="50dp"/>
        </shape>
    </rotate>

</item>

1 Ответ

0 голосов
/ 14 марта 2020

Вот вам go, вам не нужны эти дополнительные xml.

     <?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@+id/darkColor">
        <shape android:shape="rectangle">
            <solid android:color="@color/appThemeColor" />
            <corners android:radius="16dp"/>

        </shape>
    </item>

    <item android:id="@+id/lightColor1"
        android:bottom="30dp"
        android:right="300dp">
        <shape android:shape="rectangle">
            <solid android:color="@color/colorPrimaryDark" />


        </shape>
    </item>


    <item android:id="@+id/lightColor2"
        android:top="-50dp"
        android:width="300dp"
        >


        <rotate android:fromDegrees="8">
            <shape android:shape="rectangle">
                <solid android:color="@color/colorPrimaryDark" />
                <corners
                    android:bottomRightRadius="250dp"
                    android:topLeftRadius="60dp"
                    android:bottomLeftRadius="50dp"/>
            </shape>
        </rotate>

    </item>
</layer-list>

Result

...