I want to customize a spinner, or create it if there is no case, that has a style like this:
What form can it be made of? At the moment I just managed to create an XML that has the bottom of the spinner, but I do not know how to add the arrow. To assign it I did it from the Background property of the spinner, and here the code:
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<solid android:color="#bdfbea"/>
<stroke android:width="3dp"
android:color="#00887b"/>
<padding android:left="1dp"
android:top="1dp"
android:right="1dp"
android:bottom="1dp"/>
<corners android:radius="50dp"/>