I created a greeting cards application and In my android application i have to change the background color of the view( which is the background of the card) when a button is clicked. When i click the button labeled red the view should change it's color to red. and so on. Can someone help me with this?
This is a sample code i found, but it doesn't work.
public void myClickHandler(View view) {
switch (view.getId()) {
case R.id.btn1:
layout= (FrameLayout) findViewById(R.id.laidout);
layout.setBackgroundColor(Color.RED);
break;
}
