Android examples for java.lang:Math
round Two Decimals
//package com.java2s; import java.text.DecimalFormat; public class Main { public static String roundTwoDecimals(double value) { DecimalFormat twoDForm = new DecimalFormat(".00"); return twoDForm.format(value); }//from ww w. jav a2s. com }