在源代码中,如果对资源目录下的string.xml 中定义的字符串变量进行访问,只需通过getResources 的方式引用即可。
引用string.xml中的字符串
getResources().getString(R.string.hello);
引用drawable目录下的一张图片
getResources().getDrawable(R.drawable.hello);
findViewById与LayoutInflater
Layoutlnflater类似于findViewByld,两者不同之处在于Layoutlnflater是用实例化xml布局文件中的布局,findVIewById是通过id来找到xml布局文件中定义的控件
LayoutInflater inflater = LayoutInflater.from(Context context);
View view = inflater.inflate(R.layout.ID, null);
颜色
使用十六进制的颜色的好处是更灵活,因为十六进制来表示的int的四个字节分别是表示透明度,红色分量,蓝色分量,绿色分量。