Android連載41-複習四種基本佈局

詳解四種基本佈局

LinearLayout

  • 線性佈局
  • android:orientation=
    • vertical 垂直排列
    • horizontal 水平排列
  • android:layout_gravity= 用於指定文字在控件中的對齊方式
    • top
    • center_vertical
    • bottom

注意若orientation是horizontal,那麼控件只能是垂直方向上的對齊 若orientation是vertical,那麼控件只能是水平方向上的對齊android

  • android:layout_weight 這是一種比例,好比咱們有兩個控件,都指定了layout_weight=1,那麼它們在水平方向上按照1:1的比例平分了水平方向的長度,此時咱們指定layout_width多少都無效了

RelativeLayout

  • 相對定位
  • 常見屬性alignParentRight,alignParentLeft,centerInParent,alignParentBottom,alignParentTop,layout_above,layout_toLeftOf,layout_below,layout_toRigthOf,layout_alignTop,layout_alignBottom,layout_alignRight和layout_alignLeft

FrameLayout

  • 全部的控件都會擺放在佈局的左上角

TableLayout

  • TableRow就是在表中加了一行,沒加入一個控件就表明加入了一列,使用layout_span能夠進行橫跨某幾列
  • 在TableRow沒法指定控件的寬度,這時候使用android:stretchColumns屬性就能夠很好的解決這個問題,它容許將TableLayout中的某一列進行拉伸,以達到自動適應屏幕寬度的做用.
  • 指定爲數字1就表明若是表格不能佔滿整個屏幕,那麼就將第二列拉伸,若是指定成1,那麼就是拉伸第一列
相關文章
相關標籤/搜索