0

我想用 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>

希望任何人都可以帮助我。

干杯

4

1 回答 1

0

我还尝试使用 XML 创建一个按钮以将其用作背景。我只是用我的 Photoshop 剪切图像并在我的 XML 中以 ImageButton 作为背景实现它。希望它可以帮助您绘制圆边按钮。例如:-

 <Button
        android:id="@+id/answer1"
        android:layout_width="210dp"
        android:layout_height="40dp"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/question"
        android:layout_marginLeft="16dp"
        android:layout_marginTop="10dp"
        android:background="@drawable/ans"
于 2013-09-04T11:06:04.780 回答