android 如何设置TextView中字体在不同状态下的颜色
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 如何设置TextView中字体在不同状态下的颜色相关的知识,希望对你有一定的参考价值。
TextView的字体设置方法:1、直接通过配置文件设置
2、在Activity类中进行设置
第一种方式很简单,用于静态或初始文字颜色的设置,方法如下:
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_
android:layout_
android:background="@drawable/white"
>
<TextView
android:id="@+id/tv01"
android:layout_
android:layout_
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>
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>
strings.xml
Xml代码
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">地址:http://yahaitt.javaeye.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中该怎么做了。
下面看看第二种方式:在Activity类中进行设置
1、先将main.xml改成如下,即去掉android:textColor="@color/red":
Xml代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_
android:layout_
android:background="@drawable/white"
>
<TextView
android:id="@+id/tv01"
android:layout_
android:layout_
android:text="@string/hello"
android:autoLink="all"
/>
</LinearLayout>
2、修改Activity的onCreate方法,这里我的Activity是Study03_01,原始代码如下:
Java代码
package yahaitt.study03_01;
import android.app.Activity;
import android.os.Bundle;
public class Study03_01 extends Activity @Override
public void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
第一步:获得文本控件TextView,取名为tv
第二步:通过TextView的setTextColor方法进行文本颜色的设置,这里可以有3种方式进行设置:
第1种:tv.setTextColor(android.graphics.Color.RED);//系统自带的颜色类
第2种:tv.setTextColor(0xffff00ff);//0xffff00ff是int类型的数据,分组一下0x|ff|ff00ff,0x是代表颜色整数的标记,ff是表示透明度,ff00ff表示颜色,注意:这里ffff00ff必须是8个的颜色表示,不接受ff00ff这种6个的颜色表示。
第3种:tv.setTextColor(this.getResources().getColor(R.color.red));//通过获得资源文件进行设置。根据不同的情况R.color.red也可以是R.string.red或者R.drawable.red,当然前提是需要在相应的配置文件里做相应的配置,如:
<color name="red">#FF0000</color>
<drawable name="red">#FF0000</drawable>
<string name="red">#FF0000</string>
详细的代码如下:
Java代码
package yahaitt.study03_01;
import android.app.Activity;
import android.content.res.Resources;
import android.graphics.Color;
import android.os.Bundle;
import android.widget.TextView;
public class Study03_01 extends Activity
private TextView tv;
@Override
public void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
tv = (TextView)this.findViewById(R.id.tv01);
// tv.setTextColor(Color.RED);
// tv.setTextColor(0xff000000); 参考技术A 用selector在xml里描述不同状态的颜色,然后设颜色的时候把xml的id设进去 参考技术B setTextColor(int) 参考技术C u can use class SpannableString. there are many methods which can set the words 参考技术D setTextColor(color);?
Android设置TextView的字体
做项目的时候,需要使用到手写字体来让内容更加的美观。可是程序中默认使用的是系统的默认字体,怎么将TextView(或EditText)的字体设置成自己想要的字体呢?步骤如下:
1、下载字体文件(.ttf格式),比如Jinglei.ttf(方正静蕾的字体文件),然后将其复制到项目工程的assets/fonts目录下。
2、设置TextView的字体:
1 TextView tv = (TextView)findViewById(R.id.my_textview); 2 Typeface typeface = Typeface.createFromAsset(mContext.getAssets(), "fonts/Jinglei.ttf"); // mContext为上下文 3 tv.setTypeface(typeface );
3、为了使用起来方便,还可以将设置字体的操作封装成一个工具类:
1 /** 2 * 字体相关操作工具类 3 * 4 */ 5 public class TypefaceUtil { 6 // 上下文 7 private Context mContext; 8 private Typeface mTypeface; 9 10 /** 11 * 如果ttfPath为null那么mTypeface就为系统默认值 12 * 13 * @param context 14 * @param ttfPath 15 */ 16 17 public TypefaceUtil(Context context, String ttfPath) { 18 mContext = context; 19 mTypeface = getTypefaceFromTTF(ttfPath); 20 } 21 22 /** 23 * 从ttf文件创建Typeface对象 24 * 25 * @ttfPath "fonts/XXX.ttf" 26 */ 27 public Typeface getTypefaceFromTTF(String ttfPath) { 28 29 if (ttfPath == null) { 30 return Typeface.DEFAULT; 31 } else { 32 return Typeface.createFromAsset(mContext.getAssets(), ttfPath); 33 } 34 } 35 36 /** 37 * 设置TextView的字体 38 * 39 * @tv TextView对象 40 * @ttfPath ttf文件路径 41 * @isBold 是否加粗字体 42 */ 43 public void setTypeface(TextView tv, boolean isBold) { 44 tv.setTypeface(mTypeface); 45 setBold(tv, isBold); 46 } 47 48 /** 49 * 设置字体加粗 50 */ 51 public void setBold(TextView tv, boolean isBold) { 52 TextPaint tp = tv.getPaint(); 53 tp.setFakeBoldText(isBold); 54 } 55 56 /** 57 * 设置TextView的字体为系统默认字体 58 * 59 */ 60 public void setDefaultTypeFace(TextView tv, boolean isBold) { 61 tv.setTypeface(Typeface.DEFAULT); 62 setBold(tv, isBold); 63 } 64 65 /** 66 * 设置当前工具对象的字体 67 * 68 */ 69 public void setmTypeface(String ttfPath) { 70 mTypeface = getTypefaceFromTTF(ttfPath); 71 } 72 73 }
4、使用的时候只需这样调用:
1 TypefaceUtil tfUtil = new TypefaceUtil(mContext,"fonts/Jinglei.ttf"); 2 tfUtil.setTypeface(tv,false);
以上是关于android 如何设置TextView中字体在不同状态下的颜色的主要内容,如果未能解决你的问题,请参考以下文章
Android TextView中文字通过SpannableString来设置超链接 颜色 字体等属性
Android TextView中文字通过SpannableString来设置超链接颜色字体等属性