Android examples for java.lang:Math Convert
convert Mile To Millimeter
//package com.java2s; public class Main { public static float convertMileToMillimeter(float Mile) { return (float) (Mile * 1.609 * .0000001); }/*from w w w .j a v a2 s.c om*/ }