Changing background color with Radio Buttons Android
问题 I am attempting to change the background of a tab of my application by selecting a Radio Button from a RadioGroup, however I am not sure how to go about this. So far I have Favs.java: import android.app.Activity; import android.os.Bundle; public class Favs extends Activity { public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.favs); } } which points to this .xml file -> favs.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout