i want to add button color but it didnt show up
here is the drawable rounded_button.xml
<?xml version="1.0" encoding="utf-8"?>
<shape android:shape="rectangle" xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#47D476"/>
<corners android:radius="15dp"/>
</shape>
and this the layout
<Button
android:id="@+id/buttonOKE"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="@drawable/rounded_button"
android:text="SUBMIT"
/>
how to set the colors it didnt change to green
color from the rounded_button.xml
thank you.