android布局之LinearLayout
2010-05-29 06:00:00 来源:WEB开发网83. android:layout_width="fill_parent"
84. android:layout_height="wrap_content"
85. android:layout_weight="1"/ >
86.
87. < TextView
88. android:text="row two"
89. android:textSize="15pt"
90. android:layout_width="fill_parent"
91. android:layout_height="wrap_content"
92. android:layout_weight="1"/ >
93.
94. < TextView
95. android:text="row three"
96. android:textSize="15pt"
97. android:layout_width="fill_parent"
98. android:layout_height="wrap_content"
99. android:layout_weight="1"/ >
100.
101. < TextView
102. android:text="row four"
103. android:textSize="15pt"
104. android:layout_width="fill_parent"
105. android:layout_height="wrap_content"
106. android:layout_weight="1"/ >
107.
108. < /LinearLayout >
109.
110. < /LinearLayout >
main.xml
< ?xml version="1.0" encoding="utf-8"? >
< !--
< LinearLayout >
线性版面配置,在这个标签中,所有元件都是按由上到下的排队排成的
-- >
< LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
< !-- android:orientation="vertical" 表示竖直方式对齐
android:orientation="horizontal"表示水平方式对齐
android:layout_width="fill_parent"定义当前视图在屏幕上
可以消费的宽度,fill_parent即填充整个屏幕。
android:layout_height="wrap_content":随着文字栏位的不同
而改变这个视图的宽度或者高度。有点自动设置框度或者高度的意思
layout_weight 用于给一个线性布局中的诸多视图的重要度赋值。
Tags:android 布局 LinearLayout
编辑录入:coldstar [复制链接] [打 印]更多精彩
赞助商链接