Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

I think the problem occur because you are trying to load big images. Here is a good tutorial how to load large bitmaps.

share|improve this answer

change it like this:

layout.setBackgroundResource(getResources().getDrawable(R.drawable.ready));
share|improve this answer
but this is the same thing Ahmad :) – MoshErsan Sep 21 '12 at 1:13
Still get the same error. – Binghammer Sep 21 '12 at 1:25
2  
ah ok, then I would refere to Lazy Ninjas answer. – Ahmad Sep 21 '12 at 1:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.