Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android 布局(一):相對布局和線性布局

Android 布局(一):相對布局和線性布局

編輯:關於Android編程

1、 RelativeLayout:相對布局
android:layout_above 將該控件的底部 至於給定Id的控件 之上
android:layout_below 將該控件的頂部至於給定ID的控件之下
android:layout_toLeftOf 將該控件的右邊緣和給定ID的控件的左邊緣對齊
android:layout_toRightOf將該控件的左邊緣和給定ID的控件的右邊緣對齊

android:layout_alignBaseline將該 控件的baseline 和給定ID的控件 的baseline對齊
android:layout_alignBottom將該控件的底部邊緣與給定ID控件的底部邊緣對齊
android:layout_alignLeft將該控件的左邊緣與給定ID控件的左邊緣對齊
android:layout_alignRight將該控件的右邊緣與給定ID控件的右邊緣對齊
android:layout_alignTop將該控件的頂部邊緣與給定ID控件的頂部邊緣對齊

android:alignParentBottom 如果該值為true,則將該控件的底部和父控件的底部對齊
android:layout_alignParentLeft 如果該什為true, 則將該控件的左邊和父控件的左邊對齊
android:layout_alignParentRight 如果該什為true, 則將該控件的右邊和父控件的右邊對齊
android:layout_alignParentTop 如果該什為true, 則將該控件的頂部和父控件的頂部對齊

android:layout_centerHorizontal如果值為真,該控件將被至於水平方向的中央
android:layout_inParent如果值為真,該控件將被至於父控件水平方向和垂直方向的中央
android:layout_centerVertical如果值為真,該控件將被至於垂直方向的中央

2、 LinearLayout:線性布局;

版本,編碼

 

android:orientation=vertical 方向是什麼,水平和垂直之分,

android:layout_width=fill_parent 寬度

android:layout_height=fill_parent 高度

>

android:id=@+id/firstText 為控件指定相應ID

android:text=第一行 指定控件當中顯示的文字,需要注意的是,這裡盡量使用string.xml

android:gravity=center_vertical 指定控件的基本位置,比如說居中,居右等位置

android:textSize=35pt 指定控件當中字體的大小

android:background=#aa0000 指定該 控件所使用的背景顏色,RGB命名法

android:layout_width=fill_parent 充滿控件

android:layout_height=warp_content保住內容

android:paddingLeft=10dip指定控件的內邊距,也就是說控件的當中的位置

android:layout_weight=1 位置是1 做為兩個控件,兩件控件一起充滿著,但是有百分比

android:singleLine=true如果設置為真的話,則將控件的內容在同一行不如進行顯示


  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved