Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to, somewhat clone the design of an activity from a set of slides on Android UI design. However I am having a problem with a very simple task.

I have created the layout as shown in the image, and the header is a TextView in a RelativeLayout. Now I wish to change the background colour of the RelativeLayout, however I cannot seem to figure out how.

I know I can set the android:background property in the RelativeLayout tag in the XML file, but what do I set it to? I want to define a new colour that I can use in multiple places. Is it a drawable or a string?

Additionally I would expect there to be a very simple way to this from within the Eclipse Android UI designer that I must be missing?

I am a bit frustrated currently, as this should be an activity that is performed with a few clicks at maximum. So any help is very appreciated. :)

Android activity design

share|improve this question

3 Answers

up vote 51 down vote accepted

You can use simple color resources, specified usually inside res/values/colors.xml.

<color name="red">#ffff0000</color>

and use this via android:background="@color/red". This color can be used anywhere else too, e.g. as a text color. Reference it in XML the same way, or get it in code via getResources().getColor(R.color.red).

You can also use any drawable resource as a background, use android:background="@drawable/mydrawable" for this (that means 9patch drawables, normal bitmaps, shape drawables, ..).

share|improve this answer
1  
Works like a charm, thanks. Could you point me to the reference where I should have read this? – Bjarke Freund-Hansen Sep 11 '11 at 14:04
2  
Uhh actually: No. Just searched the docs, this is pretty standard android stuff, but seems nowhere really documented. Neither the tutorials on the dev site nor the api samples make use of this. The android doc is somewhat lacking when it comes to some features. I think I picked it up by accident in some external tutorials. Usually it's a good idea to browse the api samples and sample projects though. You can find the code inside the ANDROID_SDK\samples folder (for various android versions). The whole api sample app comes also preinstalled in every emulator instance. – user658042 Sep 11 '11 at 14:16
1  
Also just checked the UI designer. Nothing easy to be found. But I recommend writing things by hand in the xml anyway. The designer improved a lot recently, but it's still not useable in my opinion. Not only are some options limited, the layout sometimes looks completely different on a real device (especially when using referenced drawable resources. They don't get scaled correctly or are even not displayed at all in my experience). Test your layouts on your device or on an emulator. – user658042 Sep 11 '11 at 14:25

The above answers are nice.You can also go like this

RelativeLayout rl = (RelativeLayout)findViewById(R.id.your_layout_id);
rl.setBackgroundColor(Color.RED);
share|improve this answer
2  
Yippie! something that doesn't use XML, +1 for being a real programmer. – Wex Dec 3 '12 at 12:53
1  
-1 for doing in code what should be done in markup. – Bjarke Freund-Hansen Apr 30 at 8:56
@BjarkeFreund-Hansen r u sick minded ? read my first line,"the above answers are nice, you can also go like this".And i hope u at least know the meaning of "also". – Android Killer Apr 30 at 10:15
@BjarkeFreund-Hansen A little unfair to assume it is always best to do this in markup. Perhaps I want to give my users seizures by changing the background color rapidly. ;) – CatShoes Jun 14 at 13:33

You can use android:background="#DC143C", or any other RGB values for your color. I have no problem using it this way, as stated here

share|improve this answer
-1 because I explicitly wrote "I want to define a new colour that I can use in multiple places" in the question, because I did not want to hardcode the color value, but define it as a resource I can use in several places. – Bjarke Freund-Hansen Apr 30 at 8:54

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.