Ich hatte dieses Zeichen, um ein abgerundetes Rechteck als Hintergrund zu haben:
<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>
Dies funktioniert erwartungsgemäß einwandfrei.
Jetzt möchte ich dies so ändern, dass es nur die oberen Ecken abrundet, also ändere ich es wie folgt:
<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>
Aber jetzt ist keine der Ecken abgerundet und ich bekomme ein einfaches Rechteck. Was fehlt mir hier?