|
|
@@ -53,11 +53,11 @@ public class ConsumedAdapter extends ArrayAdapter<BPA_SubOrder> { |
|
|
|
{ |
|
|
|
bz=Double.parseDouble(order.remark); |
|
|
|
} |
|
|
|
dj.setText(String.format("%.2f", bz)); |
|
|
|
dj.setText(String.format("%.2f", bz)+" ¥/50g"); |
|
|
|
price.setText("¥"+String.format("%.2f", order.goodsRealPrice)); |
|
|
|
}catch(Exception e){ |
|
|
|
//异常捕获,例如输出异常信息 |
|
|
|
dj.setText(String.format("%.2f", 0)); |
|
|
|
dj.setText(String.format("%.2f", 0)+" ¥/50g"); |
|
|
|
price.setText("¥"+String.format("%.2f", 0)); |
|
|
|
}finally{ |
|
|
|
//善后处理,无论是否异常,都会执行的部分 |
|
|
|