圆形箭头形状按钮

发布于 2025-01-09 05:09:15 字数 955 浏览 1 评论 0原文

现在我有这个按钮使用我从这个线程获得的形状主题。

Android:使用 xml 制作三角形按钮定义(可绘制)

代码:

<style name="ShapeAppearanceOverlay.Button.Triangle" parent="">
        <item name="cornerFamily">rounded</item>
        <item name="cornerSizeTopLeft">4dp</item>
        <item name="cornerSizeBottomLeft">4dp</item>
        <item name="cornerFamilyTopRight">cut</item>
        <item name="cornerFamilyBottomRight">cut</item>
        <item name="cornerSizeTopRight">50%</item>
        <item name="cornerSizeBottomRight">50%</item>
</style>

但我需要在三角形的所有角上像此按钮一样的圆角边缘

在此处输入图像描述

非常感谢

Right now I have this button using Shape Theming which I got from this thread.

Android: Make a button with triangle shape using xml definitions (drawable)

Code:

<style name="ShapeAppearanceOverlay.Button.Triangle" parent="">
        <item name="cornerFamily">rounded</item>
        <item name="cornerSizeTopLeft">4dp</item>
        <item name="cornerSizeBottomLeft">4dp</item>
        <item name="cornerFamilyTopRight">cut</item>
        <item name="cornerFamilyBottomRight">cut</item>
        <item name="cornerSizeTopRight">50%</item>
        <item name="cornerSizeBottomRight">50%</item>
</style>

But I need the rounded edges like this button on all the corners of the triangle

enter image description here

Thank you very much

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吻泪 2025-01-16 05:09:15

添加形状

<?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

<item android:width="150dp" android:height="50dp" android:right="6dp">
    <shape>
        <solid android:color="@android:color/holo_green_dark"/>
        <corners
            android:bottomLeftRadius="5dp"
            android:topLeftRadius="5dp"
            android:topRightRadius="4dp"
            android:bottomRightRadius="3dp"/>
    </shape>
</item>

<item android:width="35dp"
    android:height="35dp"
    android:left="148dp">
    <rotate android:fromDegrees="44"
        android:pivotX="0"
        android:pivotY="0">
        <shape>
            <solid android:color="@android:color/holo_green_dark"/>
            <corners
                android:topLeftRadius="2dp"
                android:bottomLeftRadius="1dp"
                android:topRightRadius="5dp"
                android:bottomRightRadius="2dp"/>
        </shape>

    </rotate>
</item></layer-list>

Add shape

<?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

<item android:width="150dp" android:height="50dp" android:right="6dp">
    <shape>
        <solid android:color="@android:color/holo_green_dark"/>
        <corners
            android:bottomLeftRadius="5dp"
            android:topLeftRadius="5dp"
            android:topRightRadius="4dp"
            android:bottomRightRadius="3dp"/>
    </shape>
</item>

<item android:width="35dp"
    android:height="35dp"
    android:left="148dp">
    <rotate android:fromDegrees="44"
        android:pivotX="0"
        android:pivotY="0">
        <shape>
            <solid android:color="@android:color/holo_green_dark"/>
            <corners
                android:topLeftRadius="2dp"
                android:bottomLeftRadius="1dp"
                android:topRightRadius="5dp"
                android:bottomRightRadius="2dp"/>
        </shape>

    </rotate>
</item></layer-list>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文