我想设计一个xml布局,如图所示。到目前为止,我有矩形的形状如何从xml制作尖角。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/listview_background_shape">
<stroke android:width="0dp" android:color="#4c71f5" />
<padding android:left="0dp"
android:top="0dp"
android:right="0dp"
android:bottom="0dp" />
<corners android:radius="2dp" />
<solid android:color="@color/colorAccent" />
</shape>
答案 0 :(得分:0)
您可以使用以下内容:
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:angle="270" />
<corners
android:radius="3dp" />
<padding
android:left="10dp"
android:top="10dp"
android:right="10dp"
android:bottom="10dp" />
</shape>
并参考此链接Good Example