Working with 6-digit(RGB) and 8-digit hex colors (ARGB) in android

Samsul Hoque
17

RGB and ARGB: 
   
        RGB is a 3-channel format containing data for Red, Green, and Blue. ARGB is a 4-channel format containing data for Alpha, Red, Green and Blue .
There is no use to the Alpha channel other than making the color transparent/opaque (or partially transparent; translucent).
You might find an RGB value packed into 16 bits, with 5 bits for Blue and Red, and 6 bits for Green (green gets more bits because the eye is more discerning to shades of green). You might also find an RGBA value packed into 16 bits, with 5 bits for each color and 1 bit for alpha. With one bit, you can only make the color fully transparent or not transparent at all.
Typically nowadays, you'll find RGB and RGBA packed into 32 bit values, with 8 bits for each color, and 8 bits for alpha (or left blank for RGB).


Use in Android:
A color value defined in XML. The color is specified with an RGB value and alpha channel. You can use a color resource any place that accepts a hexadecimal color value. You can also use a color resource when a drawable resource is expected in XML (for example, android:drawable="@color/green").
The value always begins with a pound (#) character and then followed by the Alpha-Red-Green-Blue information in one of the following formats:
  • #RGB
  • #ARGB
  • #RRGGBB
  • #AARRGGBB
Note: A color is a simple resource that is referenced using the value provided in the name attribute (not the name of the XML file). As such, you can combine color resources with other simple resources in the one XML file, under one <resources> element.
FILE LOCATION:
res/values/colors.xml
The filename is arbitrary. The <color> element's name will be used as the resource ID.
RESOURCE REFERENCE:
In Java: R.color.color_name
In XML: @[package:]color/color_name
SYNTAX:
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color
        name="color_name"
        >hex_color</color>
</resources>
ELEMENTS:
<resources>
Required. This must be the root node.
No attributes.
<color>
A color expressed in hexadecimal, as described above.
attributes:
name
String. A name for the color. This will be used as the resource ID.
EXAMPLE:
XML file saved at res/values/colors.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
   <color name="opaque_red">#f00</color>
   <color name="translucent_red">#80ff0000</color>
</resources>
This application code retrieves the color resource:
Resources res = getResources();
int color = res.getColor(R.color.opaque_red);
This layout XML applies the color to an attribute:
<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:textColor="@color/translucent_red"
    android:text="Hello"/>
Reference : http://developer.android.com/guide/topics/resources/more-resources.html#Color

Post a Comment

17Comments
  1. this is really too useful and have more ideas from yours. keep sharing many techniques. eagerly waiting for your new blog and useful information. keep doing more.
    school websites uk

    ReplyDelete
  2. thanks for shared wonderful information of giving best information.its more useful and more helpful. great doing keep sharing
    GMAT coaching chennai

    ReplyDelete
  3. This blog is simple and easy to understand for the android app developers to actually know the real purpose of RGB and ARGB color coding done in XML formats. These example programs should help the Android App Development Company to build a highly interactive and responsive android application and achieve a better deal of user engagements. Thanks for the Blog Post.

    ReplyDelete
  4. This is really useful and I have more ideas from you. keep sharing many techniques. eagerly waiting for your new blog and useful information. keep doing more.
    top mobile app development company
    Development Cost of an Ecommerce Mobile App

    ReplyDelete
  5. Bravo! I admire how you've quoted every sentence with valuable examples and statistics. I must mention your blog has a good readability and less jargon. Appsquadz.com is one such website that posts blogs in the same niche with loaded information.

    ReplyDelete
  6. Great article. Keep writing such kind of information on your blog.
    Wall Mirror
    Whiskey Glass

    Venetian Mirror

    ReplyDelete
  7. I appreciate your website. Its really very help full. Thanks for sharing the great information

    Unified Communications

    ReplyDelete
  8. I like the valuable information you provided in your article. I am sure I will learn many new things here! Good luck.

    Also visit us for
    Urine Samples
    Plasma Samples
    Cancer Samples

    ReplyDelete
  9. Great Article.Thnks for sharing .I have been searching for such an informative post since many days and it seems my search jst ended here.Goodwork.Keep posting.

    Packers and movers in Nagpur | Movers and packers in Nagpur
    home shifting services in Nagpur

    ReplyDelete
Post a Comment