Android - 常见的控件布局,左中右,左右等

这里汇总的是自己在工作过程中,使用过的常见空间布局,记录在这里。详情如下:

1. 三个控件,分别处于左,中,右

要点:使用RelativeLayout

 1     <RelativeLayout
 2                 android:layout_width="match_parent"
 3                 android:layout_height="wrap_content"
 4                 android:orientation="horizontal">
 5             <TextView
 6                     android:layout_width="wrap_content"
 7                     android:layout_height="wrap_content"
 8                     android:gravity="center"
 9                     android:layout_alignParentLeft="true"/>
10             <TextView
11                     android:layout_width="wrap_content"
12                     android:layout_height="wrap_content"
13                     android:gravity="center"
14                     android:layout_centerHorizontal="true"/>
15             <TextView
16                     android:layout_width="wrap_content"
17                     android:layout_height="wrap_content"
18                     android:gravity="center"
19                     android:layout_alignParentRight="true"/>
20     </RelativeLayout>

2. 两个控件,分别处于左右

要点:使用layout_weight="1"的TextView撑开中间,将两个控件挤到两边

 1         <LinearLayout
 2             android:layout_width="match_parent"
 3             android:layout_height="wrap_content"
 4             android:orientation="horizontal">
 5             <TextView
 6                     android:layout_width="wrap_content"
 7                     android:layout_height="wrap_content"
 8                     android:gravity="center"
 9                     android:layout_gravity="center"/>
10             <TextView
11                     android:layout_width="wrap_content"
12                     android:layout_height="wrap_content"
13                     android:layout_weight="1" />
14             <TextView
15                     android:layout_width="wrap_content"
16                     android:layout_height="wrap_content"
17                     android:gravity="center"
18                     android:layout_gravity="center"/>
19         </LinearLayout>

持续更新......

时间: 2024-10-12 07:25:51

Android - 常见的控件布局,左中右,左右等的相关文章

Android常见的控件

1.Log类的使用 (1)Log.v()    v是verbose  提醒的意思 (2)Log.d()   d是debug调试 (3)Log.i()    i是info信息的意思 (4)Log.w()   w是warn  警告的意思 (5)Log.e()    e是error  错误的意思 (6)Log.wtf()   wtf是what the fuck 是重点错误的意思 安卓编程要多查看logcat,看日志猫打印出来的错误日志,有助于bug的调试. 2.EditText控件   编辑输入文本控

4.Android学习之控件的属性

在Android开发中需要添加不同的控件,不同的控件有不同的属性来控制控件的位置.大小.颜色等等,现总结一些常用控件的常用属性 android:layout_width 表示控件宽度, wrap_content, match_parent,以及具体的值: 长度单位为dp;android:layout_height 表示控件高度, wrap_content,match_parent,以及具体的值: 长度单位为dp; wrap_content表示当前控件的大小就能够刚好包含住里面的内容,也就是由控件

Android 控件布局常用属性

<!--单个控件经常用到android:id -- 为控件指定相应的IDandroid:text -- 指定控件当中显示的文字,需要注意的是,这里尽量使用strings.xml文件当中的字符串android:grivity -- 指定控件的基本位置,比如说居中,居右等位置android:textSize -- 指定控件当中字体的大小android:background -- 指定该控件所使用的背景色,RGB命名法 android:width -- 指定控件的宽度android:height --

Android 控件布局常用的属性

<!--单个控件经常用到android:id —— 为控件指定相应的IDandroid:text —— 指定控件当中显示的文字,需要注意的是,这里尽量使用strings.xml文件当中的字符串android:grivity —— 指定控件的基本位置,比如说居中,居右等位置android:textSize —— 指定控件当中字体的大小android:background —— 指定该控件所使用的背景色,RGB命名法 android:width —— 指定控件的宽度android:height ——

【Android 初学】3、控件布局初步

什么是控件布局 所谓的控件布局方法,就是指控制控件在Activity当中的位置.大小.颜色以及其他控件样式属性的方法. 控件的布局,在android中,有两种方法: 1.使用布局文件完成控件布局(相对简单) 2.在Java代码中完成控件布局(动态布局.更灵活.也相对复杂) 布局方法分类 1.Linear Layout(最容易掌握) 线性布局:可以纵向布局.也可以横向布局. 2.Ralative Layout(最常用使用.熟悉WEB开发的人就很熟悉) 3.ListView 4.Grid View

Android:控件布局(单帧布局)FrameLayout

FrameLayout:所有控件位于左上角,并且直接覆盖前面的子元素. 实例: <?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_heig

Android:控件布局(线性布局)

android:orientation指定LinearLayout布局方向,值:vertical (垂直方向) .horizontal(水平方向) 实例一: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width=&quo

android控件布局 ToggleButton按钮 图片和文字

ToggleButton控件具有checked属性对于要切换状态的功能按钮来说十分好用 这里以phone的开启DTMFTwelveKeyDialer的按钮为例 展示其效果和布局 activity_main.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" andro

Android自己定义控件系列案例【五】

案例效果: 案例分析: 在开发银行相关client的时候或者开发在线支付相关client的时候常常要求用户绑定银行卡,当中银行卡号一般须要空格分隔显示.最常见的就是每4位数以空格进行分隔.以方便用户实时比对自己输入的卡号是否正确.当产品经理或UI设计师把这种需求拿给我们的时候.我们的大脑会立即告诉我们Android中有个EditText控件能够用来输入卡号,但好像没见过能够分隔显示的属性或方法啊.当我们睁大眼睛对着效果图正发呆的时候.突然发现当用户输入内容的时候还出现了清空图标,点击清空图标还能