CSS+DIV进度条
<style type="text/css"> .Bar { position: relative; width: 200px; /* 宽度 */ border: 1px solid #B1D632; padding: 1px; } .Bar div { display: block; position: relative; background:#00F;/* 进度条背景颜色 */ color: #333333;
height: 20px; /* 高度 */ line-height: 20px; /* 必须和高度一致,文本才能垂直居中 */ } .Bar div span{ position: absolute; width: 200px; /* 宽度 */ text-align: center; font-weight: bold; } </style>
<div class="Bar"> <div style="width: 50%;"> <span>50%</span> </div> </div>
//此方法用于计算百分比
public String getPercent(int x,int total){ if(x==0&&total!=0){ return "0"; }else if(x==0&&total==0){ return "100%"; } String result="";//接受百分比的值 double x_double=x*1.0; double tempresult=x_double/total; //保留到小数点后几位 DecimalFormat df = new DecimalFormat("0.00%"); //##.00% 百分比格式,后面不足2位的用0补齐 result= df.format(tempresult); //注释掉的也是一种方法 //NumberFormat nf = NumberFormat.getPercentInstance(); //nf.setMinimumFractionDigits( 2 ); //result=nf.format(tempresult); return result; }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。