我想用 XML 创建一个可绘制的背景,以将其用作LinearLayout
. 我找不到任何关于直边或切边形状的教程——只有圆边。不可能吗?
形状应如下所示:
这就是我的圆角矩形代码:
<shape android:shape="rectangle">
<corners
android:topLeftRadius="10dp"
android:topRightRadius="10dp"
android:bottomLeftRadius="10dp"
android:bottomRightRadius="10dp" />
<gradient
android:startColor="#000"
android:endColor="#000"
android:gradientRadius="400"
android:angle="-270"/>
</shape>
希望任何人都可以帮助我。
干杯