一、LinearLayout(线性布局)
提供了控件水平垂直排列的模型,同时可以通过设置子控件的weight布局参数控制各个控件在布局中的相对大
小。
水平(vertical)垂直(horizontal)
fill-parent:占满整个屏幕
wrap-content:刚好适合控件内容的大小
对齐方式gravity...
分类:
移动开发 时间:
2014-12-16 21:07:55
阅读次数:
211
最终实现的效果:
先看上面的怎么实现:
分为三个部分,一是返回的按钮,二是中间聊天的用户名或者聊天的群名,三是删除按钮或者群详情的按钮。
整体使用相对布局。
<RelativeLayout
android:id="@+id/top_bar"
android:layout_width="match_parent"
...
分类:
其他好文 时间:
2014-12-16 19:22:32
阅读次数:
321
现在有这样一个布局: 1 2 3 9 10 11 12 17 />18 19 20 21 22 23 1、在一个自定义的scrollView中加入一个相对布局2、在程序跑起来的时候,又动态创建几个...
分类:
其他好文 时间:
2014-12-16 11:16:04
阅读次数:
184
RelativeLayout布局本文地址:http://blog.csdn.net/caroline_wendyRelativeLayout是一种相对布局方式,是根据属性进行对齐;A Layout where the positions of the children can be described in relation to each other or to the parent.在布局中,...
分类:
移动开发 时间:
2014-12-10 09:18:22
阅读次数:
246
1.relativeLayout布局的新属性4.22.相对布局练习//==================android:layout_alignStartandroid:layout_alignEndandroid:layout_alignParentStartandroid:layout_ali...
分类:
移动开发 时间:
2014-12-09 09:14:23
阅读次数:
191
相对布局1.什么是相对布局relativelayout2.为什么要使用3.相对布局的两组常用属性//==================1.相对布局是另外一种控件摆放方式2.相对布局是通过指定当前控件与兄弟控件或者是父控件之间的相对位置,从而达到控制空间位置的目的//===========布局越多,...
分类:
移动开发 时间:
2014-12-08 22:40:59
阅读次数:
213
1.iPad和iPhone的屏幕布局 在IB中,屏幕或控件的尺寸以点为单位。在视网膜技术中,1个点包括4个像素,而没有采用视网膜屏幕技术的还是1个点包括1个像素。 2.绝对布局和相对布局 3.使用AutoLayout布局 i。AutoLayout为空间布局定义了一套约束(constrai...
分类:
移动开发 时间:
2014-12-07 23:04:58
阅读次数:
275
RelativeLayout(相对布局):layout/activity_main.xml<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"><Text..
分类:
移动开发 时间:
2014-12-07 06:54:19
阅读次数:
176
TableLayout(相对布局):layout/activity_main.xml<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:orientati..
分类:
其他好文 时间:
2014-12-07 06:53:19
阅读次数:
223
View的布局显示方式有下面几种:线性布局(LinearLayout)相对布局(RelativeLayout)表格布局(TableLayout)网格视图(GridView)标签布局(TabLayout)列表视图(ListView)绝对布局(AbsoluteLayout)本文主要详细讲述一些参值。 R...
分类:
移动开发 时间:
2014-12-05 10:42:02
阅读次数:
194