3
我需要使用形狀XML如何使這種類型的可繪製形狀,android?
形狀必須與在左上和右上圓角而底部的角落,因爲它是長方形形狀,使這種形狀的機器人。
我嘗試以下,但不工作
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<corners
android:topLeftRadius="10dp"
android:topRightRadius="10dp"
/>
<gradient
android:angle="270"
android:endColor="@color/Red"
android:startColor="@color/Red"
android:type="linear" />
</shape>