实现下划线及颜色设置: public class AtActivity extends Activity { LinearLayout ll; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setC
第5章 链接应用样式 1.链接伪类选择器 a : link{ } (寻找没有被访问过的链接) a : visied{ }(寻找被访问过的链接) 动态伪类选择器 a : hover{ }(寻找鼠标悬停处的链接) a : focus{ }(寻找通过键盘移动到的链接) a : active{ }(寻找被激活的链接) 选择器的次序,次序混乱样式将不起作用 a : hover{ } a : focus{ } a : active{ } a : li