当前位置:   article > 正文

关于Android相对布局中的四个属性:layout_alignTop,layout_alignBottom,layout_above,layout_below的分析

layout_aligntop

      前几天想要实现仿微信的界面,在使用相对布局时用到下面四个属性,分别是android:layout_alignTop,android:layout_alignBottom,android:layout_above,android:layout_below四个属性。首先来分析这4个属性:

// 相对于给定ID控件

android:layout_above 将该控件的底部置于给定ID的控件之上;

android:layout_below 将该控件的底部置于给定ID的控件之下;

android:layout_alignTop        将该控件的顶部边缘与给定ID的顶部边缘对齐;

android:layout_alignBottom   将该控件的底部边缘与给定ID的底部边缘对齐;

在使用过程中需要实现的是这个效果:



中间是一个Fragment,我们需要为这个Fragment确定位置,下面贴一下布局文件:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <include
  6. android:id="@+id/actionbar_my"
  7. layout="@layout/main_title"
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:layout_alignParentTop="true"
  11. />
  12. <android.support.v4.view.ViewPager
  13. android:id="@+id/viewpager"
  14. android:layout_width="match_parent"
  15. android:layout_height="wrap_content"
  16. android:layout_centerInParent="true"
  17. android:focusableInTouchMode="true"
  18. android:layout_centerVertical="true"
  19. android:layout_above="@+id/bottombar_my"
  20. android:layout_below="@+id/actionbar_my"
  21. />
  22. <!-- android:layout_alignBottom="@+id/actionbar_my"
  23. android:layout_alignTop="@+id/bottombar_my" -->
  24. <include
  25. android:id="@+id/bottombar_my"
  26. layout="@layout/bottom_change_module"
  27. android:layout_width="match_parent"
  28. android:layout_height="wrap_content"
  29. android:layout_alignParentTop="false"
  30. android:layout_alignParentBottom="true"
  31. />
  32. </RelativeLayout>

很明显的三段结构,三段的layout_height都是通过wrap_content来确定的,在上下两个部分分别使用layout_alignParentTop和layout_alignParentBottom确定位置后,中间部分确定位置就变得极为关键了,看代码中我在用两种方式布局,如代码中使用layout_above和代码中layout_below来确定位置。那么当使用layout_alignBottom和layout_alignTop来布局的时候效果如下:


中间部分丢失,看不到了,那么两种情况结合起来看看,效果如下:


抓狂了,为什么不出现中间部分的布局那?

关键在于alignTop 以及alignBottom是和其他控件的顶部(底部)对齐,也就是说,是中间控件去实现和上部控件顶部对齐,和下部控件底部对齐,基本上等于match_parent。但是above和below是让中间控件的顶部和上部控件的底部对齐,和下部控件的顶部对齐,确定自己的位置,这个位置才是我们真正需要的位置。但有个问题想不明白,就是四个属性同时使用,还是没有我们想要的效果啊!这个说实话我无法解释,百度google并未找到啊!

在这里记录一下,在以后的学习工作中注意这个问题!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/270309
推荐阅读
相关标签
  

闽ICP备14008679号