Tôi đã có thể vẽ này để có một hình chữ nhật tròn làm nền:
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/white" />
<stroke android:width="1dp" android:color="@color/light_gray" />
<padding android:left="10dp" android:top="10dp" android:right="10dp" android:bottom="10dp" />
<corners android:radius="6dp" />
</shape>
Điều này đang làm việc tốt, như mong đợi.
Bây giờ, tôi muốn thay đổi điều này để chỉ làm tròn các góc trên cùng, vì vậy tôi thay đổi nó thành thế này:
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/white" />
<stroke android:width="1dp" android:color="@color/light_gray" />
<padding android:left="10dp" android:top="10dp" android:right="10dp" android:bottom="10dp" />
<corners android:topLeftRadius="6dp" android:topRightRadius="6dp"
android:bottomLeftRadius="0dp" android:bottomRightRadius="0dp"/>
</shape>
Nhưng bây giờ không có góc nào được làm tròn và tôi có một hình chữ nhật đơn giản. Tôi đang thiếu gì ở đây?