XML 45°效果覆盖

时间:2015-03-26 09:19:32

标签: android xml

我只是在努力解决一个简单的效果,我想直接在XML布局文件中创建....

Sample effect

正如您所看到的,我只是想创建一个45°叠加效果。但我无法这样做。也许你可以带领我走向正确的方向......

圆形线性布局代码(左侧):

<LinearLayout
    android:layout_width="match_parent" android:layout_alignParentBottom="true"
    android:layout_height="95dp" android:background="@drawable/semicircle_layout">
</LinearLayout>

semicircle_layout

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
    <shape android:shape="oval">
        <solid android:color="#393a3f"/>
    </shape>
</item>

<item android:top="1dp">
    <shape android:shape="oval">
        <solid android:color="#27262c"/>
    </shape>
</item>

<item android:top="2dp">
    <shape android:shape="oval">
        <gradient android:angle="45" android:startColor="#000000"  android:endColor="#000000"/>
    </shape>
</item>
</layer-list>

非常感谢任何帮助。 感谢。

0 个答案:

没有答案