Android布局之Layout
计算机113 袁博 android中的菜单有两种: 1、通过MENU键激活,叫Options Menu;另一种是当用户长按一个元素时激活,叫Context Menu。 2、Android视图有很多控件,我们需要容器来存放这些控件并控制它们的位置排列。Android布局主要有以下几种:Linear Layout(线性布局),Relative Layout(相对布局),Absolute Layout(绝对布局),Table Layout(表格布局).它们都属于ViewGroup类。 实现运行效果: 1. Linear Layout (1) ViewGroup以线性方向显示它的子视图元素,即后一个元素垂直或水平显示在上一个元素之后。显示方式的属性: android:orientation="horizontal"(水平显示,默认方式) android:orientation="vertical" (垂直方式) (2) Fill Mode填充方式,在Linear Layout的控件都必须指定它的填充方式,即设置android:layout_width和android:layout_height,可以为三种值:具体的像素,如20px;控件文本实际长度显示(wrap_content);填充剩下的所有可用空间(fill_parent). (3)Weight权重