[size=x-large][color=red][b]布局管理器[/b][/color][/size]
[color=red][b]一、1.Android最常用的布局:[/b][/color]
linerLayout(线性布局)
RelativeLayout(相对布局)
tableLayout(表格布局)
FrameLayout(框架布局)
AbsoluteLayout(绝对布局)
[color=red][b]二、五种布局管理器详解:[/b][/color]
1.FrameLayout(框架布局)
2.RelativeLayout(相对布局)
3.TableLayout(表格布局管理器)
4.AbsoluteLayout(绝对布局)
5.linerLayout(线性布局)
[color=red][b]三、扩展知识:[/b][/color]
1.[url]http://blog.csdn.net/hardcum2/article/details/7734473[/url]
[color=red][b]一、1.Android最常用的布局:[/b][/color]
linerLayout(线性布局)
RelativeLayout(相对布局)
tableLayout(表格布局)
FrameLayout(框架布局)
AbsoluteLayout(绝对布局)
[color=red][b]二、五种布局管理器详解:[/b][/color]
1.FrameLayout(框架布局)
java.lang.Object
↳ android.view.View
↳ android.view.ViewGroup
↳ android.widget.FrameLayout
所有组件均在左上角叠加显示了。
2.RelativeLayout(相对布局)
java.lang.Object
↳ android.view.View
↳ android.view.ViewGroup
↳ android.widget.RelativeLayout
在相对布局(RelativeLayout)中,子控件的位置是相对兄弟控件或父容器而决定的。出于性能考虑,在设计相对布局时,要按照控件之间的依赖关系排列。如View A的位置相当于View B来决定,则需要保证布局文件中View B在View A的前面。
3.TableLayout(表格布局管理器)
java.lang.Object
↳ android.view.View
↳ android.view.ViewGroup
↳ android.widget.LinearLayout
↳ android.widget.TableLayout
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TableRow>
<TextView
android:layout_column="0"
android:gravity="center_horizontal"
android:padding="10dp"
android:text="序号" />
<TextView
android:layout_column="1"
android:gravity="center_horizontal"
android:padding="10dp"
android:text="姓名" />
<TextView
android:layout_column="2"
android:gravity="center_horizontal"
android:padding="10dp"
android:text="城市" />
<TextView
android:layout_column="3"
android:gravity="center_horizontal"
android:padding="10dp"
android:text="性别" />
</TableRow>
<View
android:layout_height="2dp"
android:background="#FDF5E6" /> <!-- 分隔线 -->
<TableRow>...</TableRow>
</TableLayout>
4.AbsoluteLayout(绝对布局)
java.lang.Object
↳ android.view.View
↳ android.view.ViewGroup
↳ android.widget.AbsoluteLayout
绝对布局管理器的含义就似乎采用坐标进行定位,我们的屏幕是二维结构,那么绝对布局管理器就按照x和y坐标进行定位,坐标的原点位于屏幕左上角。
5.linerLayout(线性布局)
java.lang.Object
↳ android.view.View
↳ android.view.ViewGroup
↳ android.widget.LinearLayout
因为布局管理器也是视图组件,所以都继承自View类,orientation表示该布局管理器中组件的排列方式,取值有horizontal和vertical,也就是水平和竖直排列。
当设置为水平排列时,有些组件可能看不到,被挤到屏幕外面去了。
[color=red][b]三、扩展知识:[/b][/color]
1.[url]http://blog.csdn.net/hardcum2/article/details/7734473[/url]