Android examples for java.lang:Math Convert
convert Foot To meter
//package com.java2s; public class Main { public static float convertFootTometer(float Foot) { return (float) (Foot * 0.3048); }/*from ww w . j a va2s . c o m*/ }