如何将两个形状组合成一个可绘制对象?

how to combine two shapes in to make a drawable?

基本上我正在尝试为文本视图创建此边框,但我似乎无法在网上找到任何东西。我尝试将两个形状合并为一个,因为这基本上是一个圆形和一个矩形,但它似乎不起作用。任何帮助将不胜感激

在 drawable 文件夹中创建它,并将其用作背景:

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" android:padding="10dp">
    <solid android:color="@color/colorPrimary"/>
    <corners
        android:bottomLeftRadius="100dp"
        android:topLeftRadius="100dp" />
</shape>

100dp 更改为您喜欢的颜色和颜色。