I have some activity and this button there, i want it to be white and whith round cornerns
<Button
android:layout_width="143dp"
android:layout_height="73dp"
android:background="@drawable/round_white_button"
android:backgroundTint="@color/white"
android:text="@string/_13"
android:textColor="@color/black"
/>
so i have this drawable file, but button color is violet. Why it's not working
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/white" />
<corners android:radius="11dp" />
</shape>