/**
* 获取通知栏高度
* @param context
* @return
*/
public static int getStatusBarHeight(Context context){
Class<?> c = null;
Object obj = null;
Field field = null;
int x = 0, statusBarHeight = 0;
try {
c = Class.forName("com.android.internal.R$dimen");
obj = c.newInstance();
field = c.getField("status_bar_height");
x = Integer.parseInt(field.get(obj).toString());
statusBarHeight = context.getResources().getDimensionPixelSize(x);
} catch (Exception e1) {
e1.printStackTrace();
}
return statusBarHeight;
}
/**
* 获取文本宽度高度
* @param context
* @return
*/
paint.setTextSize(sp2px(context,40));
Rect boundsLeft = new Rect();
paint.getTextBounds(str.toString(), 0, flowStr[1].length()-1, boundsLeft);
boundsLeft.width()
boundsLeft.height()