Android examples for java.lang:Math Convert
convert Millimeter To Inch
//package com.java2s; public class Main { public static float convertMillimeterToInch(float Millimeter) { return (float) (Millimeter * 0.0393701); }//w w w . j av a 2 s. c o m }