Answers for "how to change the color of a button in android studio without code"

0

android studio change button color programmatically

// If you're in an activity:
Button11.setBackgroundColor(getResources().getColor(R.color.red));
// OR, if you're not: 
Button11.setBackgroundColor(Button11.getContext().getResources().getColor(R.color.red));
Posted by: Guest on March-10-2021
0

cant change button color when app run android studio

replace <Button with <androidx.appcompat.widget.AppCompatButton
Posted by: Guest on May-26-2021

Code answers related to "how to change the color of a button in android studio without code"

Code answers related to "Swift"

Browse Popular Code Answers by Language