zoukankan      html  css  js  c++  java
  • Android布局方式

    1. LinearLayout(线性布局)

        android:orientation="vertical"
        android:layout_width="wrap_content" //控件宽度
        android:layout_height="fill_content"> //控件高度
        注意:"vertical":垂直布局 horizontal:水平布局

     
        wrap_content:宽度/高度和内容的宽度/高度相同
        fill_content:宽度/高度是整个父组件的宽度/高度
        android:layout_weight ; //可以指定每个控件所占的比例

    2. FrameLayout(帆布局)
        叠加效果
    3. Relativelayout(相对布局)
        android:layout_below //在某个组件的下面
        android:layout_toLeftOr //在某个组件的左边
        android:layout_toRightOf //在某个组件的右边
        android:layout_alignTop //在某个组件上对齐
        android:layout_alignBotton //在某个组件下对齐
        android:layout_alignLeft //在某个组件左对齐
        android:layout_alignRight //在某个组件右对齐

    4. TableLayout (表格布局)
        注意:表跟布局的组件要放在TableRow中


    5. AbsoluteLayout (绝对布局)
        android:layout_x x轴坐标值
        android:layout_y y轴坐标值

  • 相关阅读:
    cookie会话技术
    Vue实现任务列表效果
    Vue实现选项卡效果
    数组API(2)
    数组常用API(1)
    sticky,粘性定位
    了解HTTP协议和TCP协议
    快速排序
    冒泡排序
    【译】x86程序员手册21-6.3.5为操作系统保留的指令
  • 原文地址:https://www.cnblogs.com/alhy/p/6877369.html
Copyright © 2011-2022 走看看