Android中控件使用技巧之:TextView

1. 使用style+代码控制TextView的不同状态下的颜色(selected,pressed,normal)

 

     

     
 

    


color_text_left_tab.xml:


    
    
    

父控件linearLayout_tap1被点击时候,设置TextView为Selected状态

TextView textView_edit2 = (TextView) findViewById(R.id.textView_edit2);
textView_edit2.setSelected(true);


你可能感兴趣的:(Android)