在 xml 文件中创建多个矩形形状

Posted

技术标签:

【中文标题】在 xml 文件中创建多个矩形形状【英文标题】:Create multiple rectangle shape in a xml file 【发布时间】:2014-05-23 10:53:40 【问题描述】:

我在 android 项目中创建了一个 shape.xml。在这个 xml 文件中,我有一个带边框的矩形设计。这工作正常。我需要在同一个 xml 中创建另一个带有左边框的矩形。这可能与否。如果它可能意味着我如何在布局页面中引用两个差异形状。

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
    <shape android:shape="rectangle" >
        <stroke
            android:
            android:
            android:color="#FF0000" />

        <solid android:color="#000000" />

        <padding
            android:bottom="1dp"
            android:left="1dp"
            android:right="1dp"
            android:top="1dp" />

        <corners
            android:bottomLeftRadius="0dp"
            android:bottomRightRadius="5dp"
            android:radius="1dp"
            android:topLeftRadius="5dp"
            android:topRightRadius="0dp" />
    </shape>
</item>

【问题讨论】:

【参考方案1】:
http://***.com/questions/4740538/can-i-use-multiple-shapes-in-one-android-drawable
http://***.com/questions/5702143/multipe-shapes-inside-shapes-xml-in-android

<?xml version="1.0" encoding="utf-8"?>
<layer-list>
<item android:drawable="@drawable/shape_7"/>
<item android:drawable="@drawable/shape_1"/>
</layer-list>

【讨论】:

以上是关于在 xml 文件中创建多个矩形形状的主要内容,如果未能解决你的问题,请参考以下文章

如何在android中创建形状三角形

在 Core Graphics 中创建拼贴的多个剪切矩形

For 循环无法在 Adob​​e Animate CC 中创建多个矩形

如何在android中创建弯曲的底部边框矩形?

在 MFC 中的 groupbox 或图片控件中创建矩形

使用xml android在雅虎摘要新闻应用程序中绘制倾斜的矩形上边缘形状