android 单位转换工具,Android单位转换----常用单位转换工具类
前言
有一定開發經驗的小伙伴肯定會發現這樣一個問題,當我們用xml來寫布局的時候,通常用的是dp、sp。(相信大家都知道為什么這樣用)。當我們用Java代碼來創建View控件時,會發現方法接收的參數都是以px為單位的,當然我們不希望直接使用px的(相信大家都知道為什么不希望使用px為單位)。這個時候大家很自然的會想到轉換一下就OK啦。dp、sp與px之間有一定的轉換公式,但每用一次就寫一次這不是程序員的風格。所以這里就總結了一個工具類,希望可以幫助到大家。
GitHub地址
代碼
內容比較簡單,話不多說,直接上代碼
/**
* 常用單位轉換的工具類
*/
public class DensityUtils {
private DensityUtils() {
}
/**
* dp轉px
*
* @param context
* @return
*/
public static int dp2px(Context context, float dpVal) {
return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dpVal, context.getResources()
.getDisplayMetrics());
}
/**
* sp轉px
*
* @param context
* @return
*/
public static int sp2px(Context context, float spVal) {
return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, spVal, context.getResources()
.getDisplayMetrics());
}
/**
* px轉dp
*
* @param context
* @param pxVal
* @return
*/
public static float px2dp(Context context, float pxVal) {
final float scale = context.getResources().getDisplayMetrics().density;
return (pxVal / scale);
}
/**
* px轉sp
*
* @param pxVal
* @return
*/
public static float px2sp(Context context, float pxVal) {
return (pxVal / context.getResources().getDisplayMetrics().scaledDensity);
}
/**
* 得到屏幕寬度
*
* @param context
* @return
*/
public static int getDisplayWidth(Context context) {
return context.getResources().getDisplayMetrics().widthPixels;
}
/**
* 得到屏幕高度
*
* @param context
* @return
*/
public static int getDisplayHeight(Context context) {
return context.getResources().getDisplayMetrics().heightPixels;
}
}
實際上,核心內容還是Android API里面的內容,這里只不過是對Android API進行了一次封裝,讓自己更容易記憶,在開發中效率更高。
我們點進去TypedValue.applyDimension();這個方法,源碼如下,源碼很清晰,相信大家一眼就能看明白。
public static float applyDimension(int unit, float value,
DisplayMetrics metrics)
{
switch (unit) {
case COMPLEX_UNIT_PX:
return value;
case COMPLEX_UNIT_DIP:
return value * metrics.density;
case COMPLEX_UNIT_SP:
return value * metrics.scaledDensity;
case COMPLEX_UNIT_PT:
return value * metrics.xdpi * (1.0f/72);
case COMPLEX_UNIT_IN:
return value * metrics.xdpi;
case COMPLEX_UNIT_MM:
return value * metrics.xdpi * (1.0f/25.4f);
}
return 0;
}
補充
補充三個方法:
獲取狀態欄的高度
獲取當前屏幕截圖但不包含狀態欄
獲取當前屏幕截圖包含狀態欄。
這一類代碼,并不需要死記硬背,收集好,用的時候可以快速找到即可。
/**
* 獲得狀態欄的高度
*
* @param context
* @return
*/
public static int getStatusHeight(Context context) {
int statusHeight = -1;
try {
Class> clazz = Class.forName("com.android.internal.R$dimen");
Object object = clazz.newInstance();
int height = Integer.parseInt(clazz.getField("status_bar_height").get(object).toString());
statusHeight = context.getResources().getDimensionPixelSize(height);
} catch (Exception e) {
e.printStackTrace();
}
return statusHeight;
}
/**
* 獲取當前屏幕截圖,包含狀態欄
*
* @param activity
* @return
*/
public static Bitmap snapShotWithStatusBar(Activity activity) {
View view = activity.getWindow().getDecorView();
view.setDrawingCacheEnabled(true);
view.buildDrawingCache();
Bitmap bmp = view.getDrawingCache();
int width = getDisplayWidth(activity);
int height = getDisplayHeight(activity);
Bitmap bp = null;
bp = Bitmap.createBitmap(bmp, 0, 0, width, height);
view.destroyDrawingCache();
return bp;
}
/**
* 獲取當前屏幕截圖,不包含狀態欄
*
* @param activity
* @return
*/
public static Bitmap snapShotWithoutStatusBar(Activity activity) {
View view = activity.getWindow().getDecorView();
view.setDrawingCacheEnabled(true);
view.buildDrawingCache();
Bitmap bmp = view.getDrawingCache();
Rect frame = new Rect();
activity.getWindow().getDecorView().getWindowVisibleDisplayFrame(frame);
int statusBarHeight = frame.top;
int width = getDisplayWidth(activity);
int height = getDisplayHeight(activity);
Bitmap bp = null;
bp = Bitmap.createBitmap(bmp, 0, statusBarHeight, width, height - statusBarHeight);
view.destroyDrawingCache();
return bp;
}
總結
以上是生活随笔為你收集整理的android 单位转换工具,Android单位转换----常用单位转换工具类的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: android 水平方向瀑布流,Andr
- 下一篇: android 固定大小,android