android中px、sp與dp之間進行轉換詳解
由於Android手機廠商很多,導致瞭不同設備屏幕大小和分辨率都不一樣,然而我們開發者要保持在不同設備上顯示同樣的視覺效果,就需要做一些適配效果。
相關名詞解釋
- 屏幕大小:通常指的是屏幕對角線的長度,使用“寸”為單位來衡量。
- 分辨率:指手機屏幕的像素點個數,例如:720*1280,指的是寬有720個像素點,高有1280個像素點。
- dpi:指的是每英寸像素,是由對角線上的像素點數除以屏幕大小所得。
系統屏幕密度
- ldpi文件夾下對應的密度為120dpi,對應的分辨率為240*320
- mdpi文件夾下對應的密度為160dpi,對應的分辨率為320*480
- hdpi文件夾下對應的密度為240dpi,對應的分辨率為480*800
- xhdpi文件夾下對應的密度為320dpi,對應的分辨率為720*1280
- xxhdpi文件夾下對應的密度為480dpi,對應的分辨率為1080*1920
由於各種屏幕密度的不同,導致瞭同一張圖片在不同的手機屏幕上顯示不同;在屏幕大小相同的情況下,高密度的屏幕包含瞭更多的像素點。android系統將密度為160dpi的屏幕作為標準對於mdpi文件夾,在此屏幕的手機上1dp=1px。從上面系統屏幕密度可以得出各個密度值之間的換算;在mdpi中1dp=1px,在hdpi中1dp=1.5px,在xhdpi中1dp=2px,在xxhpi中1dp=3px。換算比例如下:ldpi:mdpi:hdpi:xhdpi:xxhdpi=3:4:6:8:12。
單位換算方法
/** * dp轉換成px */ private int dp2px(Context context,float dpValue){ float scale=context.getResources().getDisplayMetrics().density; return (int)(dpValue*scale+0.5f); } /** * px轉換成dp */ private int px2dp(Context context,float pxValue){ float scale=context.getResources().getDisplayMetrics().density; return (int)(pxValue/scale+0.5f); } /** * sp轉換成px */ private int sp2px(Context context,float spValue){ float fontScale=context.getResources().getDisplayMetrics().scaledDensity; return (int) (spValue*fontScale+0.5f); } /** * px轉換成sp */ private int px2sp(Context context,float pxValue){ float fontScale=context.getResources().getDisplayMetrics().scaledDensity; return (int) (pxValue/fontScale+0.5f); }
利用系統TypeValue類來轉換
private int dp2px(Context context,int dpValue){ return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,dpValue,context.getResources().getDisplayMetrics()); } private int sp2px(Context context,int spValue){ return (int)TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP,spValue,context.getResources().getDisplayMetrics()); }
補充:sp與dp的區別
下面我們進行一下實驗: textSize的單位分別設置為sp和dp,然後改變系統字體大小
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <TextView android:layout_width="200dp" android:layout_height="wrap_content" android:text="尚矽谷科技" android:background="#ff0000" android:textSize="20sp"/> <TextView android:id="@+id/textView2" android:layout_width="200px" android:layout_height="wrap_content" android:text="尚矽谷科技" android:background="#00ff00" android:textSize="20dp"/> </LinearLayout>
1、用sp做單位,設置有效果
2、dp做單位沒有效果
總結
到此這篇關於android中px、sp與dp之間進行轉換的文章就介紹到這瞭,更多相關android px sp dp之間轉換內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- Android開發手冊TextView控件及陰影效果實現
- Android中TextView自動適配文本大小的幾種解決方案
- Android實現左側滑動菜單
- 詳解Android如何自定義view實現圓形進度條
- Android自定義view實現圓形進度條效果