创建自定义可绘制形状

时间:2018-10-05 08:58:20

标签: android android-shape android-shapedrawable

我想创建图像下方所示的矩形形状。  我应该做些什么? 致以最诚挚的问候。

enter image description here

1 个答案:

答案 0 :(得分:2)

使用<vector>

    <vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="8dp"
    android:viewportWidth="24.0"
    android:viewportHeight="50.0">

    <path
        android:fillColor="#8CCC13"
        android:pathData="M24 24v-24h-24v24a20 36 0 0 1 24 0z" />

</vector>

请参见下面的输出:

enter image description here