Android examples for java.lang:Math Convert
convert Bit To MegaByte
//package com.java2s; public class Main { public static float convertBitToMegaByte(float Bit) { return (float) (Bit * 1.1921 * .00000001); }/*w ww.j a va 2 s. c o m*/ }