标签:android style java 文件 ar art sp line on
1.TextView显示的内容过长时自动显示省略号:
tv.setEllipsize(TextUtils.TruncateAt.END); // 收缩
2.TextView文字中间加横线:
tv_goods_price = (TextView) v.findViewById(R.id.tv_goods_price);
tv_goods_price.getPaint().setFlags(Paint.STRIKE_THRU_TEXT_FLAG);
底部加横线:
tv_goods_price.getPaint().setFlags(Paint.UNDERLINE_TEXT_FLAG);
TextView过长显示省略号, TextView文字中间加横线
标签:android style java 文件 ar art sp line on
原文地址:http://blog.csdn.net/lyy1104/article/details/38869739