zoukankan      html  css  js  c++  java
  • Android开发(二):RelativeLayout、FrameLayout、LinearLayout、TableLayout、AbsoluteLayout各种Layout属性

     

    RelativeLayout:基于其他控件(包括同容器中控件和容器(父)控件)的layout

     

    相对于容器控件(父控件)

    android:layout_alignParentLeft="true"

    将控件的左边缘和父控件的左边缘对齐

    RelativeLayout

    android:layout_alignParentTop="true"

    将控件的上边缘和父控件的上边缘对齐

    android:layout_alignParentRight="true"

    将控件的右边缘和父控件的右边缘对齐

    android:layout_alignParentBottom="true"

    将控件的底边缘和父控件的底边缘对齐

    android:layout_centerInParent="true"

    将控件置于父控件的中心位置

    android:layout_centerHorizontal="true"

    将控件置于父控件的水平方向的中心位置

    android:layout_centerVertical="true"

    将控件置于父控件的垂直方向的中心位置

    相对于同容器中控件(同级控件)

    android:layout_above="@id/xxx"

    将控件置于给定ID控件之上;

    RelativeLayout

    android:layout_below="@id/xxx"

    将控件置于给定ID控件之下

    android:layout_toLeftOf="@id/xxx"

    将控件的右边缘和给定ID控件的左边缘对齐

    android:layout_toRightOf="@id/xxx"

    将控件的左边缘和给定ID控件的右边缘对齐

     

     

    android:layout_alignLeft="@id/xxx"

    将控件的左边缘和给定ID控件的左边缘对齐

    RelativeLayout

    android:layout_alignTop="@id/xxx"

    将控件的上边缘和给定ID控件的上边缘对齐

    android:layout_alignRight="@id/xxx"

    将控件的右边缘和给定ID控件的右边缘对齐

    android:layout_alignBottom="@id/xxx"

    将控件的底边缘和给定ID控件的底边缘对齐

    android:layout_alignBaseline="@id/xxx"

    将该控件的baseline与给定ID的baseline对齐

    【Baseline】

    http://www.cnblogs.com/loulijun/archive/2012/10/17/2727580.html

     

     

    位置偏移布局

    android:layout_marginTop=”20dp”

    相对于参照控件【上偏移】的值

    FrameLayout,

    LinearLayout,

    TableLayout,

    RelativeLayout,

    AbsoluteLayout

    android:layout_marginBottom=”20dp”

    相对于参照控件【下偏移】的值

    android:layout_marginLeft=”20dp”

    相对于参照控件【左偏移】的值

    android:layout_marginRight=”20dp”

    相对于参照控件【右偏移】的值

    android:layout_width="wrap_content"

    定义控件上面的文本(TextView) 的宽度

    android:layout_height="wrap_content"

    定义控件上面的文本(TextView) 的高度

     

    其他

    layout_weight="1"

    重要度赋值

    LinearLayout

    android:layout_gravity="left/right/…"

    控件本身相对于父控件的位置

    FrameLayout,

    LinearLayout,

    TableLayout,

    RelativeLayout,

    AbsoluteLayout

    控件(容器控件和非容器控件)边距

     

    android:padding=”20dp”

    控件四周边距

    android:paddingLeft=”20dp”

    控件左边距20dp

    android:paddingTop=”20dp”

    控件上边距20dp

    android:paddingRight=”20dp”

    控件右边距20dp

    android:paddingBottom=”20dp”

    控件下边距20dp

    【android中dip、dp、px、sp和屏幕密度】

    http://www.cnblogs.com/fbsk/archive/2011/10/17/2215539.html

    http://www.cnblogs.com/greatverve/archive/2011/12/28/android-dip-dp-sp-pt-px.html

     

    控件自身属性

     

    android:id="@id/textview1"

    为控件指定相应的ID

    android:text=”20dp”

    指定控件当中显示的文字,需要注意的是,这里尽量使用strings.xml文件当中的字符串

    android:textSize=”20sp”

    指定控件当中字体的大小

    android:background=”#FFFFFF”

    指定该控件所使用的背景色,RGB命名法 #FFFFFF或@android:color/white

    android:width=”120dp”

    指定控件的宽度

    android:height=”20dp”

    指定控件的高度

    android:sigleLine=”true”

    如果设置为真的话,则将控件的内容只能在同一行当中进行显示

    android:gravity=" center_vertical|center_horizontal|…"

    指定控件中的内容的基本位置,比如说居中,居右等位置

     

    【更详细属性说明】

    http://www.apkbus.com/android-18175-1-1.html

     

    属性对比

     

    【android:width与android:layout_width】

    http://www.cnblogs.com/carbs/archive/2012/07/03/2575474.html

     

     

     

  • 相关阅读:
    SpringBoot自定义FailureAnalyzer
    Linux 系统目录结构
    Spring Boot实战:静态资源处理
    Activiti7整合SpringBoot(十二)
    Acvitivi网关(十一)
    为什么阿里巴巴要禁用Executors创建线程池?
    lqb 基础练习 数列排序 (sort的使用)
    lqb 入门训练 A+B问题
    lqb 入门训练 序列求和 (PS:用长整数做数据的输入输出)
    lqb 入门训练 圆的面积 (PS: PI的精确计算方法 atan(1.0) * 4)
  • 原文地址:https://www.cnblogs.com/bbinking/p/3228162.html
Copyright © 2011-2022 走看看