<?php
<shape android:shape="rectangle" android:thickness="2dp" xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@android:color/transparent" />
<corners
android:bottomLeftRadius="22dp"
android:bottomRightRadius="22dp"
android:topLeftRadius="22dp"
android:topRightRadius="22dp"/>
<stroke android:color="@color/main_color" android:width="1dp" />
</shape>
?>