第一种方式很简单,用于静态或初始文字颜色的设置,方法如下:



main.xml





Xml代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/white"
>
<TextView
android:id="@+id/tv01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
android:autoLink="all"
android:textColor="@color/red"
/>
</LinearLayout>

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/white"
>
<TextView
android:id="@+id/tv01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
android:autoLink="all"
android:textColor="@color/red"
/>
</LinearLayout>




color.xml





Xml代码
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="red">#FF0000</color>
</resources>

<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="red">#FF0000</color>
</resources>




drawable.xml





Xml代码
<?xml version="1.0" encoding="utf-8"?>
<resources>
<drawable name="white">#FFFFFF</drawable>
<drawable name="dark">#000000</drawable>
<drawable name="red">#FF0000</drawable>
</resources>

<?xml version="1.0" encoding="utf-8"?>
<resources>
<drawable name="white">#FFFFFF</drawable>
<drawable name="dark">#000000</drawable>
<drawable name="red">#FF0000</drawable>
</resources>




strings.xml





Xml代码
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">地址:http://yahaitt.iteye.com</string>
<string name="app_name">丫梨的笔记本</string>
</resources>

<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">地址:http://yahaitt.iteye.com</string>
<string name="app_name">丫梨的笔记本</string>
</resources>






上面将资源部分分成了3个部分,目的是为了清晰,当然你也可以只建一个xml文件放在res目录下,而且文件名称可以随便命名。



注意两个地方:

1、main.xml的TextView标签中:

android:textColor="@color/red"

2、color.xml中:

<color name="red">#FF0000</color>



@color指获取资源文件中(所有res目录下的xml文件)的<color>标签

/red指在标签下找其name值为red的内容,此时其值为#FF0000



因此,这里我们还可以这样做:

android:textColor="@drawable/red"


@drawable指获取资源文件中<drawable>标签

/red指在标签下找其name值为red的内容



以此类推,相信你也就知道了如果是在strings.xml中该怎么做了。

更多相关文章

  1. 解决官网下载Android(安卓)Studio速度过慢
  2. android 概述 及四大组件
  3. Android异步加载图片,并缓存到SD卡
  4. 使用air进行移动app开发常见功能和问题(二)
  5. Android(安卓)OpenGL学习笔记(二)之----三角形的绘制.
  6. Android判断WIFI是否打开的方法
  7. 在Eclipse中查看Android(安卓)SDK的源代码
  8. mybatisplus的坑 insert标签insert into select无参数问题的解决
  9. NPM 和webpack 的基础使用

随机推荐

  1. android 中系统自带的主题与样式(theme a
  2. Android的设计模式-中介者模式
  3. android 中系统自带的主题与样式(theme a
  4. Android的设计模式-观察者模式
  5. android 中系统自带的主题与样式(theme a
  6. Android的设计模式-模板方法模式
  7. android中自带的主题(theme)的集
  8. Android的设计模式-工厂方法模式
  9. Android的设计模式-建造者模式
  10. Android的设计模式-策略模式