Android中尺寸單位雜談

來源:互聯網
上載者:User

講解一

在android系統中單位DP也就是DIP:device independent pixels(裝置獨立像素).

dip : device independent pixels(裝置獨立像素). 不同裝置有不同的顯示效果,這個和裝置硬體有關,一般我們為了支援WVGA、HVGA和 QVGA 推薦使用這個,不依賴像素。   

px : pixels(像素). 不同裝置顯示效果相同,一般我們HVGA代表320x480像素,這個用的比較多。  

pt : point,是一個標準的長度單位,1pt=1/72英寸,用於印刷業,非常簡單易用;  

sp : scaled pixels(放大像素). 主要用於字型顯示best for textsize。  

dp也就是dip。這個和sp基本類似。如果設定表示長度、高度等屬性時可以使用dp或sp。但如果設定字型,需要使用sp。dp是與密度無關,sp除了與密度無關外,還與scale無關。如果螢幕密度為160,這時dp和sp和px是一樣的。 1dp=1sp=1px,但如果使用px作單位,如果螢幕大小不變(假設還是3.2寸),而螢幕密度變成了320。那麼原來TextView的寬度設成 160px,在密度為320的3.2寸螢幕裡看要比在密度為160的3.2寸螢幕上看短了一半。但如果設定成160dp或160sp的話。系統會自動將
width屬性值設定成320px的。也就是160 * 320 / 160。其中320 / 160可稱為密度比例因素。也就是說,如果使用dp和sp,系統會根據螢幕密度的變化自動進行轉換.

講解二

2.1 使用尺寸(dimen)資源

我們可以使用一些常用的尺寸單位來定義一些文字尺寸、視圖組件的寬和高等。尺寸資源是一個數字類型的資料,被定義在res\values\dimens.xml檔案中。

2.1.1 Android中支援的尺寸單位

在電腦中一般我們會用到的尺寸單位有厘米(cm)、毫米(mm)、像素(px)、英尺(in)等。Android中支援的尺寸單位如表3.4所示。

表 Android中支援單位

單 位 表 示

單 位 名 稱

單 位 說 明

px

像素

螢幕上的真實像素表示

in

英尺

基於螢幕的物理尺寸

續表

單 位 表 示

單 位 名 稱

單 位 說 明

mm

毫米

基於螢幕的物理尺寸

pt

英尺的1/72

dp

和密度無關的像素

相對螢幕物理密度的抽象單位

sp

和精度無關的像素

和dp類似

2.1.2 尺寸資源XML檔案的定義

尺寸資源是定義在XML檔案中的一些整型數值。有關尺寸資源的定義如表3.5所示。

表3.5 尺寸資源的定義和使用

資 源 位 置

res/values/dimens.xml

尺寸XML檔案格式

使用<?xml version="1.0" encoding="utf-8"?>

<resources>根項目

<dimen>子項目:<dimen name=

dimen_name>dimen_value</dimen>

獲得尺寸資源的方法

getResources().getDimension()

引用尺寸資源的格式

Java代碼中:R.dimen.dimen_name

XML檔案中:@[package:]dimen/dimen_name

2.1.3 尺寸資源XML檔案的使用

下面還是通過一個執行個體來示範尺寸資源的用法。該執行個體在布局檔案中添加一個TextView和一個Button,分別使用尺寸資源檔來定義它們的寬和高。

在工程的res\values\目錄下建立一個dimens.xml尺寸資源檔。

 
  1. <?xmlversion="1.0"encoding="utf-8"?>
  2. <resources>
  3. <dimenname="text_width">150px</dimen>
  4. <dimenname="text_height">100px</dimen>
  5. <dimenname="btn_width">30mm</dimen>
  6. <dimenname="btn_height">10mm</dimen>
  7. </resources>

在工程的res\layout\目錄下建立一個test_dimen.xml布局檔案。在該布局檔案中添加一個TextView和一個Button。TextView的寬和高引用尺寸資源來設定。Button的寬和高在代碼中設定。

 
  1. <?xmlversion="1.0"encoding="utf-8"?>
  2. <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"android:layout_width="fill_parent"
  4. android:layout_height="fill_parent">
  5. <TextView
  6. android:text="@string/test_dimen"
  7. android:id="@+id/myDimenTextView01"
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:width="@dimen/text_width"
  11. android:height="@dimen/text_height"
  12. android:background="@color/red_bg"
  13. />
  14. <Button
  15. android:text="@string/test_dimen1"
  16. android:id="@+id/Button01"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"></Button>
  19. </LinearLayout>

在com.amaker.dimen包中,建立一個TestDimensionActivity類。在該類頂部聲明使用的Button視圖組件,在onCreate()方法中執行個體化該組件,並定義尺寸資源設定其寬和高。

 
  1. packagecom.amaker.ch03.dimen;
  2. importandroid.app.Activity;
  3. importandroid.content.res.Resources;
  4. importandroid.os.Bundle;
  5. importandroid.widget.Button;
  6. importcom.amaker.test.R;
  7. /**
  8. *
  9. *@author郭宏志
  10. *測試尺寸資源
  11. */
  12. publicclassTestDimensionActivityextendsActivity{
  13. privateButtonmyButton;
  14. @Override
  15. publicvoidonCreate(BundlesavedInstanceState){
  16. super.onCreate(savedInstanceState);
  17. //設定當前Activity的內容布局視圖
  18. setContentView(R.layout.test_dimen);
  19. //通過findViewById方法獲得Button執行個體
  20. myButton=(Button)findViewById(R.id.Button01);
  21. //獲得Resources執行個體
  22. Resourcesr=getResources();
  23. //通過getDimension方法獲得尺寸值
  24. floatbtn_h=r.getDimension(R.dimen.btn_height);
  25. floatbtn_w=r.getDimension(R.dimen.btn_width);
  26. //設定按鈕的寬
  27. myButton.setHeight((int)btn_h);
  28. //設定按鈕的高
  29. myButton.setWidth((int)btn_w);
  30. }
  31. }

運行程式,結果3.4所示。

圖3.4 尺寸資源應用
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.