[轉]Android中的android:layout_width和android:width

來源:互聯網
上載者:User

標籤:

 

 

android:width 其實是定義控制項上面的文本(TextView) 的寬度,當然這個寬度也是和 android:layout_width 配合起來作用的,如果 android:layout_width="fill_parent" 的話,那麼設定 android:width 是沒有意義的


android:layout_width 其實是可以實現 android:width 的效果的,我覺得這應該是為什麼在 android 執行個體中看不到有人用 android:width 的原因吧。


若還要講講兩者的區別的話,那就是:
android:width 的值,一般是 "100dp" 這樣的數值;
android:layout_width 的值,一般是"fill_parent","wrap_content","match_parent".當然,它也可以像前者一樣,設定數值的.


帶"layout"的屬性是指整個控制項而言的,是與父控制項之間的關係,如 layout_gravity 在父控制項中的對齊, layout_margin 是層級相同的控制項之間的間隙等等;

不帶"layout" 的屬性是指控制項中文本的格式,如gravity是指文本的對齊等等,而其中文本的格式又受制約於它的控制項在父控制項中的屬性.


借用一位大牛的樣本:http://zhangcong170.iteye.com/blog/423173

[html] view plaincopyprint?
    1. <?xml version="1.0" encoding="utf-8"?>    
    2. <!--     
    3.     <LinearLayout>    
    4.     線性版面配置,在這個標籤中,所有元件都是按由上到下的排隊排成的    
    5.  -->    
    6. <LinearLayout     
    7.     xmlns:android="http://schemas.android.com/apk/res/android"    
    8.     android:orientation="vertical"     
    9.     android:layout_width="fill_parent"    
    10.     android:layout_height="fill_parent">    
    11.    <!-- android:orientation="vertical" 表示豎直方式對齊    
    12.         android:orientation="horizontal"表示水平方式對齊    
    13.         android:layout_width="fill_parent"定義當前視圖在螢幕上 可以消費的寬度,fill_parent即填充整個螢幕。    
    14.         android:layout_height="wrap_content":隨著文字欄位的不同 而改變這個視圖的寬度或者高度。有點自動化佈建框度或者高度的意思    
    15.                   
    16.         layout_weight 用於給一個線性布局中的諸多視圖的重要度賦值。    
    17.           
    18.         所有的視圖都有一個layout_weight值,預設為零,意思是需要顯示    
    19.         多大的視圖就佔據多大的螢幕空 間。若賦一個高於零的值,則將父視    
    20.         圖中的可用空間分割,分割大小具體取決於每一個視圖的layout_weight    
    21.         值以及該值在當前螢幕布局的整體 layout_weight值和在其它視圖螢幕布    
    22.         局的layout_weight值中所佔的比率而定。    
    23.           
    24.         舉個例子:比如說我們在 水平方向上有一個文字標籤和兩個文本編輯元素。    
    25.         該文字標籤並無指定layout_weight值,所以它將佔據需要提供的最少空間。    
    26.         如果兩個文本編輯元素每一個的layout_weight值都設定為1,則兩者平分    
    27.         在父視圖布局剩餘的寬度(因為我們聲明這兩者的重要度相等)。如果兩個     
    28.         文本編輯元素其中第一個的layout_weight值設定為1,而第二個的設定為2,    
    29.         則剩餘空間的三分之二分給第一個,三分之一分給第二個(數值越小,重要    
    30.         度越高)。    
    31.     -->    
    32.     <LinearLayout    
    33.     android:orientation="horizontal"    
    34.     android:layout_width="fill_parent"    
    35.     android:layout_height="fill_parent"    
    36.     android:layout_weight="1">    
    37.     <TextView    
    38.         android:text="red"    
    39.         android:gravity="center_horizontal"    
    40.         android:background="#aa0000"    
    41.         android:layout_width="wrap_content"    
    42.         android:layout_height="fill_parent"    
    43.         android:layout_weight="1"/>    
    44.         
    45.     <TextView    
    46.         android:text="green"    
    47.         android:gravity="center_horizontal"    
    48.         android:background="#00aa00"    
    49.         android:layout_width="wrap_content"    
    50.         android:layout_height="fill_parent"    
    51.         android:layout_weight="1"/>    
    52.         
    53.     <TextView    
    54.         android:text="blue"    
    55.         android:gravity="center_horizontal"    
    56.         android:background="#0000aa"    
    57.         android:layout_width="wrap_content"    
    58.         android:layout_height="fill_parent"    
    59.         android:layout_weight="1"/>    
    60.         
    61.     <TextView    
    62.         android:text="yellow"    
    63.         android:gravity="center_horizontal"    
    64.         android:background="#aaaa00"    
    65.         android:layout_width="wrap_content"    
    66.         android:layout_height="fill_parent"    
    67.         android:layout_weight="1"/>    
    68.             
    69.     </LinearLayout>    
    70.         
    71.     <LinearLayout    
    72.     android:orientation="vertical"    
    73.     android:layout_width="fill_parent"    
    74.     android:layout_height="fill_parent"    
    75.     android:layout_weight="2">    
    76.         
    77.     <TextView    
    78.         android:text="row one"    
    79.         android:textSize="15pt"    
    80.         android:layout_width="fill_parent"    
    81.         android:layout_height="wrap_content"    
    82.         android:layout_weight="1"/>    
    83.         
    84.     <TextView    
    85.         android:text="row two"    
    86.         android:textSize="15pt"    
    87.         android:layout_width="fill_parent"    
    88.         android:layout_height="wrap_content"    
    89.         android:layout_weight="1"/>    
    90.         
    91.     <TextView    
    92.         android:text="row three"    
    93.         android:textSize="15pt"    
    94.         android:layout_width="fill_parent"    
    95.         android:layout_height="wrap_content"    
    96.         android:layout_weight="1"/>    
    97.         
    98.     <TextView    
    99.         android:text="row four"    
    100.         android:textSize="15pt"    
    101.         android:layout_width="fill_parent"    
    102.         android:layout_height="wrap_content"    
    103.         android:layout_weight="1"/>    
    104.             
    105.     </LinearLayout>    
    106.             
    107. </LinearLayout>   

[轉]Android中的android:layout_width和android:width

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.