I fail changing the background of my button in my activity. It is a basic button which a shape as a background.
In my main.xml it looks like this in my RelativeLayout:
<Button
    android:id="@+id/mybtn"
    android:background = "@drawable/rounded_button"
    android:elevation="0dp" />
In my MainActivity I try to change the button like this:
    Button btn = findViewById(R.id.mybtn);
    btn.setBackgroundColor(Color.RED);
But it says:
cannot resolve method setBackgroundColor
 
     
     
     
     
     
     
    