Every Android Activity class file has an associated layout.xml file to design the view. Every layout file has a parent View i.e. RelativeLayout, LinearLayout, TableLayout, TableRow, GridLayout e.t.c. that holds the subviews like Buttons, TextView, EditText, ImageView e.t.c together.
Let's see how we can set background color's to these Layouts with various options that we have,
How to set Background Color to Android Layout XML file!
- Using xml attributes
android:background="" is the attribute used to set background for any Layout file.
You can directly specify the value as HEX color code as we do for CSS files in HTML.
Example 1 : android:background="#FFFFCC"
You can also add transparency to the color by adding 2 more hex numbers after the # (hash) symbol.
Example 2 : android:background="#FFFFFFCC"
Example 3 : android:background="#00FFFFCC"
FF => Completely Opaque and 00 => Completely transparent.
You can also assign a color from color.xml resource file using @color/color
Example 4 : android:background="@color/lime_yellow"
File : res/values/color.xml
<?xml version="1.0" encoding="utf-8"?> <resources> <color name="lime_yellow">#FFFFEE</color> <color name="gray">#CCCCCC</color> </resources>
- Programmatically using Java code.
There are situations when you may want to change the background color of a layout using java code in your Activity.java file, then you can do it by using setBackgroundColor() method on your layout.
To your Parent View Layout add an attribute @id/id_name and map it to a variable in your java file.
Example 1: currentLayout.setBackgroundColor(Color.RED);
public class ColorActivityExample extends ActionBarActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_color_activity_example); //Set an id to the layout RelativeLayout currentLayout = (RelativeLayout) findViewById(R.id.main_layout); currentLayout.setBackgroundColor(Color.RED); }
Options for color available in Color class :
BLACK BLUE CYAN DKGRAY GRAY GREEN LTGRAY MAGENTA RED TRANSPARENT WHITE YELLOW
You can set rgb color code using method : Color.rgb(int red,int green,int blue);
Example 2 : currentLayout.setBackgroundColor(Color.rgb(200, 200, 200));
We can add Alpha to color as we do use XML attribute in java using the function : argb(int alpha, int red, int green, int blue);
Example 3 : currentLayout.setBackgroundColor(Color.argb(10,200, 200, 200));
If you wish to set the color code as HEX value you can do it using method Color.parseColor(String color);
Example 4 : currentLayout.setBackgroundColor(Color.parseColor("#FFFFFF"));

- Android Error Unexpected cast to Button: layout tag was FrameLayout
- ADT quit unexpectedly error on Mac OSX Android Eclipse SDK
- Parsing Data for android-21 failed unsupported major.minor version 51.0
- Android Studio Ctrl Shift o auto import not working
- java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
- Android : How to make TextView Scrollable
- This class should be public (android.support.v7.internal.widget.ActionBarView.HomeView) Lint Error
- Integrating Android Facebook SDK 3.17.2 Tutorial
- Android R Cannot Be Resolved To A Variable
- Android : Exception raised during rendering: action_bar API 22
- How to take screenshot on Android
- Read Text file from SD Card : Android Programming
- How to make Android EditText not editable
- Your Android SDK is out of date or is missing templates. Please ensure you are using SDK version 22 or later.
- The declared package does not match the expected package Eclipse
- Can't Run SDK Manager find_java.bat issue
- What is Android Toast.LENGTH_SHORT and Toast. LENGTH_LONG durations
- Android Emulator Soft Back button action using Computer keyboard
- Multiline EditText in Android Example
- Use 5G Network on Android Emulator
- Make Android TextView Clickable like Buttons
- How to empty trash in Android Device
- Android : Execute some code after back button is pressed
- Disable Fading Edges Scroll Effect Android Views
- How To Disable Landscape Mode in Android Application
- How to press shortcut CTRL + ALT + DEL on Windows Remote Desktop - HowTos
- How to remove app from Dock when closed [macOS Big Sur] - MacOS
- Get the Current Date using LocalDate in Java - Java
- Eclipse : A java Runtime Environment (JRE) or Java Development kit (JDK) must be available - Java
- Difference between using Scanner Class and String args for user input in Java - Java
- How to delete a dir or folder using Python code - Python
- Android: programmatically turn Bluetooth on or off using Java code - Android
- How to disable button in Bootstrap - Bootstrap