将long型转换为多少MB的方法

Formatter.formatFileSize(
this, processInfo.getMemsize())

 

public class DensityUtil {
/**
* 根据手机的分辨率从 dp 的单位 转成为 px(像素)
*/
public static int dip2px(Context context, float dpValue) {
final float scale = context.getResources().getDisplayMetrics().density;
return (int) (dpValue * scale + 0.5f);
}

/**
*根据手机的分辨率从 px(像素) 的单位 转成为 dp
*/
public static int px2dip(Context context, float pxValue) {
final float scale = context.getResources().getDisplayMetrics().density;
return (int) (pxValue / scale + 0.5f);
}
}

posted @ 2016-01-20 10:15  请叫我码农怪蜀黍  阅读(430)  评论(0编辑  收藏  举报