android TextView字体设置最少占多少行. 及其 Java String 字符串操作 . .

①  字体设置:

修改代码 :  GridViewActivity.java

priceTv为 TextView

1             priceTv.setMaxLines(3);
2             //当多与7个字fu的时候 , 其余字符不显示.. 
3             if (name.length()>=7) {
4                 name  = name.substring(0, 6)+"..."; 
5             }
6             priceTv.setMinLines(3);

设置宽度:

   priceTv.setMaxWidth(250);
   priceTv.setMinWidth(250); 

也可:

   priceTv.setEms(250);
   priceTv.setEms(250);

截取字符串 : 运行结果是 22.000555

1 public class TestDemo {
2 public static void main(String[] args) {
3     String p = "22.000555000";
4     while( p.endsWith("0")|| p.endsWith(".")){
5         p =p.replace(p, p.substring(0, p.length()-1)); 
6     }
7     System.out.println(p);
8 }
9 }

 上述价格处理有问题

if( p.endsWith(".0")){
  p =p.replace(p, p.substring(0, p.length()-2));
 } else if(p.endsWith(".00")){
  p =p.replace(p, p.substring(0, p.length()-3));
 }

转载于:https://www.cnblogs.com/aikongmeng/p/3410951.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值