App的布局管理

App的布局管理,第1张

概述今天学习了布局管理器,格局自己的学习内容和课程,我主要学习了两种管理布局方式  一:LinearLayout线性布局     线性布局是指布局里面的内容成线性排列,有两种排列方式,横向排列和纵向排列,而排列方式是由属性orientation所决定,横向:vertical,纵向:horizontal,还有权重weigh

今天学习了布局管理器,格局自己的学习内容和课程,我主要学习了两种管理布局方式

    一:linearLayout线性布局

         线性布局是指布局里面的内容成线性排列,有两种排列方式,横向排列和纵向排列,而排列方式是由属性orIEntation所决定,横向:vertical,纵向:horizontal,还有权重weight,layout_wIDth,layout_height等等。

         代码案例:

       activity_main.xml:

<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"    xmlns:app="http://schemas.androID.com/apk/res-auto"    xmlns:tools="http://schemas.androID.com/tools"    androID:layout_wIDth="match_parent"    androID:layout_height="match_parent"    tools:context=".MainActivity">     <linearLayout         androID:layout_wIDth="200dp"         androID:layout_height="200dp"         androID:orIEntation="vertical"         androID:background="#000000"         androID:paddingleft="20dp"         androID:paddingRight="20dp"         androID:paddingtop="20dp"         androID:paddingBottom="20dp">         <VIEw             androID:layout_wIDth="match_parent"             androID:layout_height="match_parent"             androID:background="#FF0033"/>      </linearLayout>    </linearLayout>

     运行结果:

     

    二:relativeLayout相对布局

            在relativeLayout中,控件可以通过各种属性来设置自己相对其他控件的位置,来达到自己位置切换的目的。

            alignParent系列属性:想跟哪对齐就把哪个属性设置成true

                                                 andoID:ayout_alignParentleft="true",左对齐

                  androID:layout_alignParentStart="true",起始位置对齐

               androID:layout_alignParentEnd="true",结束为止对齐

            center系列属性:可以直接指定组件位于中心

                                        androID:layout_centerInParent="true" ,相对父容器中心对齐

                                        androID:layout_centerHorizontal="true" ,相对父容器水平对齐

                                        androID:layout_centerVertical="true",相对父容器垂直对齐

            gravity和ignoreGravity属性:gravity设置了容器自己内的子组件的对齐方式,被ignoreGravity指定的组件不受gravity的影响

             兄弟组件定位:

                                    androID:layout_above="@ID/tv"在组件的上方,其余below.toleftOf,aligntop......这些都类似,这里以后用到再做详细说明

            代码案例:

    activity_main.xml:

<?xml version="1.0" enCoding="utf-8"?><relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"    xmlns:app="http://schemas.androID.com/apk/res-auto"    xmlns:tools="http://schemas.androID.com/tools"    androID:layout_wIDth="match_parent"    androID:layout_height="match_parent"    tools:context=".MainActivity">    <VIEw        androID:ID="@+ID/vIEw_1"        androID:layout_wIDth="100dp"        androID:layout_height="100dp"        androID:background="#000000"/>    <VIEw        androID:ID="@+ID/vIEw_2"        androID:layout_wIDth="100dp"        androID:layout_height="100dp"        androID:layout_toRightOf="@+ID/vIEw_1"        androID:background="#ff0033"/>    <VIEw        androID:ID="@+ID/vIEw_3"        androID:layout_wIDth="100dp"        androID:layout_height="100dp"        androID:layout_toRightOf="@+ID/vIEw_2"        androID:background="#0033ff"/></relativeLayout>

      运行结果:

          

 

 思想感悟:

     app学习,和之前的javaWeb的学习的主要思想和架构有很大的相似之处,只是里面的语法和表达方式,略有差别,继续后期的学习,掌握其主要核心。

总结

以上是内存溢出为你收集整理的App的布局管理全部内容,希望文章能够帮你解决App的布局管理所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1067900.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存