Android 通过继承TextView类自定义字体默认颜色

关键词:Android、TextView、自定义字体默认的颜色

方法如下:

1、自定义类MyTextView继承TextView,MyTextView.java代码如下:

package org.shuxiang.test;

import android.content.Context;
import android.graphics.Color;
import android.util.AttributeSet;
import android.widget.TextView;

public class MyTextView extends TextView
{
	public MyTextView(Context context, AttributeSet attrs)
	{
		super(context, attrs);
		this.setTextColor(Color.GREEN);  //此处定义颜色
	}
}


2、调用方法:

在.xml文件中调用代码如下:

 

欢迎转载交流:http://blog.csdn.net/aminfo/article/details/7907903

 


 

你可能感兴趣的:(JAVA,Android)