android中setspan设置字体的颜色背景色以及点击跳转,怎么做?求大神指点!

android中setspan设置字体的颜色背景色以及点击跳转,怎么做?求大神指点!

对要点击的文本设置监听
text.setOnClickListener(
new OnClickListener(){
public void onClick(View v){
Intent intent = new Intent();
intent.setClass(起始类名.this, 跳转类名.class);
startActivity(intent);

//实现跳转
}

}

);