如何在android中构建梯形?

前端之家收集整理的这篇文章主要介绍了如何在android中构建梯形?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何创建如下图所示的梯形?

我不想使用图像或9.png.

解决方法

尝试这个:
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="292dp"
    android:height="172dp"
    android:viewportWidth="292"
    android:viewportHeight="172">

    <path
        android:strokeWidth="1.5"
        android:strokeMiterLimit="10"
        android:pathData="M 27.046 96.615 L 16.416 150.396 L 271.534 150.396 L 186.495 22.836 L 37.676 22.836 L 27.046 86.615 Z" />

    <path
        android:fillColor="#00ff00"
        android:strokeWidth="1.5"
        android:strokeMiterLimit="10"
        android:pathData="M 16.046 20.615 L 13.416 150.396 L 271.534 150.396 L 186.495 22.836 L 37.676 22.836 L 16.046 23.615 Z " />
</vector>

原文链接:https://www.f2er.com/android/310552.html

猜你在找的Android相关文章