Gentlemen I would like to make a textView richer by leaving it inside a Circle, it is a Product List with the product name and the value and this one that would be inside the circle, I tried to make a shape and use it as background was not cool, as you can see my rounded_shape.xml down
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" android:padding="2dp">
<solid android:color="@color/amarelo2"/>
<stroke android:color="@color/branco" android:width="2dp"/>
<corners android:radius="2dp"/>
and making use of it
<TextView
android:textColor="@color/colorPrimarytext"
android:id="@+id/tv_valor"
android:background="@drawable/rounded_shape"
Plus the effect was horrible