Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 高級開發 >> Android UI學習 - Linear Layout, RelativeLayout(1)

Android UI學習 - Linear Layout, RelativeLayout(1)

編輯:高級開發

1.一些常用的公共屬性介紹

1) layout_width -寬 fill_parent: 寬度和父元素相同,wrap_content: 寬度隨本身的內容所調整,或者指定 px值來設置2) layout_height - 高 fill_parent: 高度和父元素相同,wrap_content: 高度隨本身的內容所調整,或者指定 px值來設置高 3) background -設置背景圖 4) padding -設置邊距 可以具體設置paddingBottom,paddingLeft,paddingRight,paddingTop來設定不同的px值 5) id -該object的id號 @+id/id1 代表添加新的id名為id1, @id/id1 代表引用id1的控件 6) layout_weight -重要度 個人理解為顯示的優先級。默認為0(最高),數值越大,優先級越低!參考下面的Linear Layout例子。要讓layout_weight生效,需要父層或父父層的相應layout_width/layout_height = "fill_parent",否則wrap_content會壓縮到最小足夠空間! &nb
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved