Cannot resolve symbol ‘button’ -Android Studio
Here are some things you might have forgotten to do: Name your button (give it an id), I think they’re named button1, button2, … by default Use a capital B when declaring the button object: Button myButton = new Button(“play music”); You should make sure you have Button imported in the activity where you want … Read more