I need a way to set the background of my app when the button is pressed. I have three backgounds that will change often. I have tried a few things but no luck. I got a outofmemory: bitmap size exceeds VM budget error when using this code;
RelativeLayout layout =(RelativeLayout)findViewById(R.id.background);
layout.setBackgroundResource(R.drawable.ready);
I am a newb, so I am not sure where to go from here. I have googled it all day and haven't gotten anywhere. So I decided to risk the down-vote, and ask you guys.
I am not sure that is the best way to do it. Any advice will be great. Thanks.