RelativeLayout(相对布局)⽤法实例讲解
本节引⾔
LinearLayout也是我们⽤的⽐较多的⼀个布局,我们更多的时候更钟情于他的weight(权重)属性,等⽐例划分,对屏幕适配还是帮助蛮⼤的;但是使⽤LinearLayout的时候也有⼀个问题,就是当界⾯⽐较复杂的时候,需要嵌套多层的 LinearLayout,这样就会降低UI Render的效率(渲染速度),⽽且如果是listview或者GridView上的 item,效率会更低,另外太多层LinearLayout嵌套会占⽤更多的系统资源,还有可能引发stackoverflow; 但是如果我们使⽤RelativeLayout的话,可能仅仅需要⼀层就可以完成了,以⽗容器或者兄弟组件参考+margin +padding就可以设置组件的显⽰位置,是⽐较⽅便的!当然,也不是绝对的,具体问题具体分析吧! 总结就是:尽量使⽤RelativeLayout + LinearLayout的weight属性搭配使⽤吧!
核⼼属性图
2.⽗容器定位属性⽰意图
3.根据兄弟组件定位android layout布局
恩,先说下什么是兄弟组件吧,所谓的兄弟组件就是处于同⼀层次容器的组件,如图
图中的组件1,2就是兄弟组件了,⽽组件3与组件1或组件2并不是兄弟组件,所以组件3不能通过组件1或2来进⾏定位,⽐如layout_toleftof = "组件1"这样是会报错的!切记!关于这个兄弟组件定位的最经典例⼦就是"梅花布局"了,下⾯代码实现下:
运⾏效果图:
实现代码:
<RelativeLayout xmlns:android="schemas.android/apk/res/android"
xmlns:tools="schemas.android/tools"
android:id="@+id/RelativeLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<!-- 这个是在容器中央的 -->
<ImageView
android:id="@+id/img1"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_centerInParent="true"
android:src="@drawable/pic1"/>
<!-- 在中间图⽚的左边 -->
<ImageView
android:id="@+id/img2"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_toLeftOf="@id/img1"
android:layout_centerVertical="true"
android:src="@drawable/pic2"/>
<!-- 在中间图⽚的右边 -->
<ImageView
android:id="@+id/img3"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_toRightOf="@id/img1"
android:layout_centerVertical="true"
android:src="@drawable/pic3"/>
<!-- 在中间图⽚的上⾯-->
<ImageView
android:id="@+id/img4"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_above="@id/img1"
android:layout_centerHorizontal="true"
android:src="@drawable/pic4"/>
<!-- 在中间图⽚的下⾯ -->
<ImageView
android:id="@+id/img5"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_below="@id/img1"
android:layout_centerHorizontal="true"
android:src="@drawable/pic5"/>
</RelativeLayout>
4.margin与padding的区别
初学者对于这两个属性可能会有⼀点混淆,这⾥区分下:⾸先margin代表的是偏移,⽐如marginleft = "5dp"表⽰组件离容器左边缘偏移5dp; ⽽padding代表的则是填充,⽽填充的对象针对的是组件中的元素,⽐如TextView中的⽂字⽐如为TextView设置paddingleft = "5dp",则是在组件⾥的元素的左边填充5dp的空间! margin针对的是容器中的组件,⽽padding针对的是组件中的元素,要区分开来!下⾯通过简单的代码演⽰两者的区别:
⽐较⽰例代码如下:
<RelativeLayout xmlns:android="schemas.android/apk/res/android"
xmlns:tools="schemas.android/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<Button
android:id="@+id/btn1"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Button"/>
<Button
android:paddingLeft="100dp"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Button"
android:layout_toRightOf="@id/btn1"/>
<Button
android:id="@+id/btn2"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Button"
android:layout_alignParentBottom="true"/>
<Button
android:layout_marginLeft="100dp"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Button"
android:layout_toRightOf="@id/btn2"
android:layout_alignParentBottom="true"/>
</RelativeLayout>
运⾏效果图⽐较:
5.很常⽤的⼀点:margin可以设置为负数
相信很多朋友都不知道⼀点吧,平时我们设置margin的时候都习惯了是正数的, 其实是可以⽤负数的,下⾯写个简单的程序演⽰下吧,模拟进⼊软件后,弹出⼴告页⾯的,右上⾓的cancle按钮的margin则是使⽤负数的!
效果图如下:
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论