TextView

1.复制功能

添加属性
android:textIsSelectable="true"

2.行间距

1、android:lineSpacingExtra
设置行间距,如”3dp”。
2、android:lineSpacingMultiplier
设置行间距的倍数,如”1.2″。

3. 代码中修改TextView的DrawableLeft图片
Drawable weather = getResources().getDrawable(R.drawable.sunday);           
weather.setBounds(0, 0, weather.getMinimumWidth(), weather.getMinimumWidth()); 
tv_choose_weather.setCompoundDrawables(weather, null, null, null);
4.区分大小写

android:textAllCaps="false"

你可能感兴趣的:(TextView)