美文网首页
常用的UI布局

常用的UI布局

作者: 双笙霊云 | 来源:发表于2018-05-25 10:04 被阅读0次

线性布局

http://schemas.android.com/apk/res/android"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:orientation="vertical" >

android:id="@+id/editText1"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:hint="To" >

android:id="@+id/editText2"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:hint="Subject" />

android:id="@+id/editText3"

android:layout_width="match_parent"

android:layout_height="0dp"

android:layout_weight="1"

android:gravity="top"

android:hint="massage" />

android:layout_width="match_parent"

android:layout_height="wrap_content" >

android:id="@+id/button1"

android:layout_width="0dp"

android:layout_height="wrap_content"

android:text="reset"

android:layout_weight="1" />

android:id="@+id/button2"

android:layout_width="0dp"

android:layout_height="wrap_content"

android:text="send"

android:layout_weight="1" />

对布局

http://schemas.android.com/apk/res/android"

android:layout_width="match_parent"

android:layout_height="match_parent" >

android:id="@+id/ed_retive_massage"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_alignParentLeft="true"

android:layout_alignParentTop="true"

android:hint="Message" >

android:id="@+id/btn_revtie_ok"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_alignParentRight="true"

android:layout_below="@+id/ed_retive_massage"

android:text="Ok" />

android:id="@+id/btn_revtie_cancel"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="Cancel"

android:layout_alignTop="@id/btn_revtie_ok"

android:layout_toLeftOf="@id/btn_revtie_ok"

android:layout_marginRight="10dp" />

帧布局

http://schemas.android.com/apk/res/android"

android:layout_width="match_parent"

android:layout_height="match_parent" >

android:layout_width="280dp"

android:layout_height="280dp"

android:background="#33FFFF"

android:layout_gravity="center"

/>

android:layout_width="220dp"

android:layout_height="220dp"

android:background="#33CCFF"

android:layout_gravity="center"

/>

android:layout_width="180dp"

android:layout_height="180dp"

android:background="#3399FF"

android:layout_gravity="center" />

android:layout_width="140dp"

android:layout_height="140dp"

android:background="#3366FF"

android:layout_gravity="center" />

android:layout_width="100dp"

android:layout_height="100dp"

android:background="#3300FF"

android:layout_gravity="center" />

内边距与外边距

http://schemas.android.com/apk/res/android"

android:layout_width="match_parent"

android:layout_height="match_parent" >

android:id="@+id/textView1"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_margin="20dp"

android:paddingLeft="60dp"

android:hint="Message" />

android:id="@+id/button1"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_alignRight="@+id/textView1"

android:layout_below="@+id/textView1"

android:layout_marginTop="20dp"

android:text="OK" />

表格布局

http://schemas.android.com/apk/res/android"

android:layout_width="match_parent"

android:layout_height="match_parent" >

android:layout_width="match_parent"

android:layout_height="wrap_content"

>

android:layout_width="0dp"

android:layout_height="wrap_content"

android:text="1241"

android:gravity="center"

android:layout_weight="1"

/>

android:layout_width="0dp"

android:layout_height="wrap_content"

android:text="我中意你啊"

android:gravity="center"

android:layout_weight="1"

/>

android:layout_width="match_parent"

android:layout_height="wrap_content" >

android:layout_width="0dp"

roid:layout_weight="1" />

android:layout_width="0dp"

android:layout_height="wrap_content"

android:text="我中意你啊"

android:gravity="center"

android:layout_weight="1" />

相关文章

  • LinearLayout线性布局详解

    线性布局是Android UI页面开发常用的布局,LinearLayout is a view group tha...

  • UI常用布局

    UI常用的布局LineaLayout:线性布局重要属性:-orientation方向 分为水平,垂直-layou...

  • 常用UI布局

    常用UI布局1. LinearLayout线性布局: 用来控制其子View以水平或垂直方式展开显示重要属性: or...

  • 常用的UI布局

    线性布局 http://schemas.android.com/apk/res/android" android:...

  • android 第四课

    1. 这周主要是学习了微信的ui制作中五种布局的方式,分为线性布局相对布局绝对布局表格布局和帧布局,我们常用的...

  • 第四周学习总结

    1. 这周主要是学习了微信的ui制作中五种布局的方式,分为线性布局相对布局绝对布局表格布局和帧布局,我们常用的...

  • iOS开发中iPhone和iPad的布局适配(工具篇)

    UIAdaptiveKit LayoutTool.swift : UI自动布局的便捷方法, 主要有常用的 宽度,...

  • 布局属性和优化

    常用UI的布局1.LinearLayout: 线性布局用来控制其子View以水平和垂直方式展开2.Relati...

  • 2018-05-15常用UI布局

    常用UI布局1. LinearLayout线性布局: 用来控制其子View以水平或垂直方式展开显示重要属性: or...

  • 前端开发-前端资源汇集

    1.布局框架 Bootstrap(不用作响应式布局不建议用,太重)Element UI(个人开发web应用常用)i...

网友评论

      本文标题:常用的UI布局

      本文链接:https://www.haomeiwen.com/subject/evdyjftx.html