Question

Which of the following statements is false?
a. There are several predefined colors (each starts with @android:color) in Android's Holo theme. You can also use any custom color created from a combination of red, green and blue components called RGB valueseach is an integer in the range 0"255 that defines the amount of red, green and blue in the color, respectively.
b. Custom colors are defined in hexadecimal (base 16) format, so the RGB components are values in the range 00"FF.
c. Android also supports alpha (transparency) values in the range 0 (completely opaque) to 255 (completely transparent).
d. To use alpha, you specify the color in the format #AARRGGBB, where the first two hexadecimal digits represent the alpha value. If both digits of each color component are the same, you can use the abbreviated formats #RGB or #ARGB. For example, #9AC is treated as #99AACC and #F9AC is treated as #FF99AACC.

Answer

This answer is hidden. It contains 225 characters.