我想画一个像这样的自定义形状 - 。
一种选择是在 Photoshop 中单独制作每个形状,然后在编码中使用它,但我想知道是否可以使用 xml 来绘制它?
我应该如何绘制这样的形状?不要指望完整的代码,只要给我想法或指出正确的方向。
我想画一个像这样的自定义形状 - 。
一种选择是在 Photoshop 中单独制作每个形状,然后在编码中使用它,但我想知道是否可以使用 xml 来绘制它?
我应该如何绘制这样的形状?不要指望完整的代码,只要给我想法或指出正确的方向。
尝试以下形状可绘制 xml:
<?xml version="1.0" encoding="UTF-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<!-- Colored rectangle-->
<item>
<shape android:shape="rectangle">
<size
android:width="100dp"
android:height="40dp" />
<solid android:color="#FAD55C" />
</shape>
</item>
<!-- This rectangle for the left side -->
<!-- Its color should be the same as layout's -->
<item
android:right="90dp"
android:left="-30dp">
<rotate
android:fromDegrees="45">
<shape android:shape="rectangle">
<solid android:color="#ffffff" />
</shape>
</rotate>
</item>
<!-- These rectangles for the right side -->
<!-- Their color should be the same as layout's -->
<item
android:top="-40dp"
android:bottom="63dp"
android:right="-25dp">
<rotate
android:fromDegrees="45">
<shape android:shape="rectangle">
<solid android:color="#ffffff" />
</shape>
</rotate>
</item>
<item
android:top="63dp"
android:bottom="-40dp"
android:right="-25dp">
<rotate
android:fromDegrees="-45">
<shape android:shape="rectangle">
<solid android:color="#ffffff" />
</shape>
</rotate>
</item>
</layer-list>
这就是它在白色背景上的样子:
这是有关Shape Drawables的更多信息。
编辑:
以下是它如何完成的一个小解释。
top, bottom, right and left
属性是size
指形状的边界到top, bottom, right and left
容器(黄色矩形)边缘的距离。例如,如果我们想在黄色矩形内放置一个较小的矩形,并与10dp
每个黄色矩形的边缘有一个间隙,我们将为新的(内部)矩形设置top, bottom, right and left
属性等于。10dp
size
标记属性的值可以为负数,这意味着形状的相应边缘出现在容器之外。在前面的示例中,如果您将left
属性设置为 100 dp 或更高,则内部矩形将不会显示,因为它将位于黄色矩形的右边界后面。关于旋转,正值顺时针旋转,否则逆时针旋转。
希望这没有让您感到困惑。