Android examples for java.lang:Math Convert
convert Millimeter To meter
//package com.java2s; public class Main { public static float convertMillimeterTometer(float Millimeter) { return (float) (Millimeter * 0.001); }/* ww w .jav a 2 s .c o m*/ }