Android开发中使用的颜色可以分为两种,自定义颜色和系统颜色
1.自定义颜色:
颜色值的定义是通过RGB三原色和一个alpha值来定义的(加色原理)。以井号(#)开始,后面是Alpha-Red-Green-Blue的格式。
形如:
#RGB
#ARGB
#RRGGBB
#AARRGGBB
通常使用#RRGGBB 或者#AARRGGBB的形式
1.1 在资源文件中定义颜色:
一般在res\values下建立colors.xml文件,定义颜色,如下:
- <?xmlversion="1.0"encoding="utf-8"?>
- <resourses>
- <colorname="red">#ff0000</color>
- </resourses>
1.2.1 在代码中使用颜色
R.color.color_name
例如:
- Buttonbtn1=(Button)findViewById(R.id.button1);
- intcolor=Resources.getSystem().getColor(R.color.red);
- btn1.setBackgroundColor(color);
1.2.2 在布局文件中使用颜色
@[package:]color/color_name
例如:
- <prename="code"class="java"><blockquotestyle="margin:00040px;border:none;padding:0px"><prename="code"class="java"style="margin-top:4px;margin-right:0px;margin-bottom:4px;margin-left:0px;background-color:rgb(240,240,240);"><Button
- Android:id="@+id/button1"
- Android:layout_height="wrap_content"
- Android:layout_width="match_parent"
- Android:text="Addressbook"
- Android:background="#ff0000"
- ></Button>
2.系统颜色
Android也有一些内置的颜色,例如系统资源中定义的颜色,十分有限。
Android.graphics.Color类中也提供了一些颜色常量和构造颜色值的静态方法。
2.1 系统颜色的使用
2.1.1 在代码中使用系统颜色
系统资源中定义的颜色值十分有限
Button btn1 = (Button) findViewById(R.id.button1);
- intcolor=Resources.getSystem().getColor(Android.R.color.background_dark);
- btn1.setBackgroundColor(color);
- Buttonbtn1=(Button)findViewById(R.id.button1);
- btn1.setBackgroundColor(Color.CYAN);
- Buttonbtn1=(Button)findViewById(R.id.button1);
- btn1.setBackgroundColor(Color.argb(0xff,0xff,0x00,0x00));
本文深入探讨了Android开发中颜色的使用方式,包括自定义颜色和系统颜色的定义与应用,详细介绍了如何在代码和布局文件中使用这些颜色。
236

被折叠的 条评论
为什么被折叠?



