如何使用图层列表使用可绘制的xml文件创建这样的波浪效果

时间:2018-07-18 13:41:53

标签: android layout

我想将其设置为背景,所以基本上我需要一个使用图层列表或其他内容的xml代码。请有人帮我解决这个问题。

i want the wave view as shown in the image

我有这样的东西

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
    android:height="50dp"
    android:gravity="bottom">
    <shape android:shape="rectangle">
        <solid android:color="#ffff0000" />
    </shape>
</item>
<item
    android:width="500dp"
    android:height="60dp"
    android:gravity="bottom|center_horizontal"
    android:top="-0dp">
    <shape android:shape="oval">
        <solid android:color="#ffffffff" />
    </shape>
</item>
<item
    android:height="20dp"
    android:bottom="30dp"
    android:gravity="bottom">
    <shape android:shape="rectangle">
        <solid android:color="#ffffffff" />
    </shape>
</item>

1 个答案:

答案 0 :(得分:0)

  1. 将图像文件放入checkDataNew
  2. 在您的res/drawable布局根视图中,添加

XML