首頁 > 軟體

android中px、sp與dp之間進行轉換詳解

2022-08-21 14:00:03

由於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之間轉換內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com