界面布局

weight值越小权重越高,优先满足小权重的控件的布局

 

   android:layout_alignBottom="@id/main_iv_01"

  android:layout_alignRight="@id/main_iv_01"


  android:layout_alignTop=""

  android:layout_alignLeft=""

这四个相对布局是对应id指向的控件的四个内边界的相对位置

 

而与之对应的

  android:layout_toRightOf="@id/main_iv_01"

  android:layout_toLeftOf=""

  android:layout_above=""
  android:layout_below=""

等四个是相对于id指向控件的外边界的相对位置

 

  android:layout_alignParentBottom="true"

也是相对于父控件的内边界位置

转载于:https://www.cnblogs.com/totem1990/archive/2012/08/30/2664387.html

你可能感兴趣的:(移动开发)