android TextView控件

1)设置文本是否包含顶部和底部的额外空白
在xml文件的TextView控件中加入如下属性:

        android:includeFontPadding="false" 

 

2)有时直接引用资源文件不起作用(例如:textView.setTextColor(R.color.red)),可做如下处理:

        textView.setTextColor(context.getResources().getColor(R.color.red));

3)textview中可以显示多行,但是行数是有限制的,比如最多两行,如果第二行依然显示不下,显示singleline的效果

        android:maxLines="2" 


4)文字的雕刻效果

        


 

 

5)跑马灯效果

	
	


6)中文字体加粗效果

((TextView) findViewById(R.id.test)).getPaint().setFakeBoldText(true);


 7)点击时TextView中文字颜色变化

首先建立res\color文件夹,然后创建textview_colors_selector.xml文件,内容如下:

 




    
    
    
    


然后在main.xml文件中指定TextView的textColor属性:




            android:textColor="@color/textview_colors_selector"
        android:textSize="24sp" />


正常状态:

 

点击状态:

 

你可能感兴趣的:(android_widget)