完整内容请查看http://www.zhdoc.net/android/reference/android/widget/LinearLayout.html
LinearLayout
public class LinearLayout
extends ViewGroup
java.lang.Object | |||
↳ | android.view.View | ||
↳ | android.view.ViewGroup | ||
↳ | android.widget.LinearLayout |
A Layout that arranges its children in a single column or a single row. The direction of the row can be set by calling setOrientation()
. You can also specify gravity, which specifies the alignment of all the child elements by calling setGravity()
or specify that specific children grow to fill up any remaining space in the layout by setting the weight member of LinearLayout.LayoutParams
. The default orientation is horizontal.
一种布局,其将子项放置在一行或者一列中。行的方向可以通过调用setOrientation()
来设置。你还可以指定重力值,其通过调用setGravity()
指定所有子元素的对齐方式,或者指定特定的子项通过设置LinearLayout.LayoutParams
中的weight成员来增加尺寸,以填充布局中的剩余空间。默认的方位是水平方向。
See the Linear Layout guide.
请参考Linear Layout
Also see android.widget.LinearLayout.LayoutParams
for layout attributes
参考android.widget.LinearLayout.LayoutParams
了解布局属性。
摘要
嵌套类 | |
---|---|
class | LinearLayout.LayoutParams Per-child layout information associated with ViewLinearLayout. |
XML属性 | |
---|---|
android:baselineAligned | 当设置为false, 则防止布局对其子视图的基线对齐。 |
android:baselineAlignedChildIndex | 当线性布局是其他布局的一部分,并且是基线对齐的, 它可以指定与哪个子项基线对齐 (可能是某个子TextView)。 |
android:divider | Drawable,用于按钮之间的一个垂直分割栏。 |
android:gravity | 在一个对象自身的边界内,它如何在x轴和y坐标轴上放置其内容。 |
android:measureWithLargestChild | 当设置为true时, 所有带权重的子项都会具有最大子项的最小尺寸。 |
android:orientation | 布局是行还是列?使用“horizontal”表示一行,使用“vertical”表示一列。 |
android:weightSum | 定义权重总和的最大值。 |
继承XML属性 | |
---|---|
From class android.view.ViewGroup
| |
From class android.view.View
|
常量 | |
---|---|
int | HORIZONTAL |
int | SHOW_DIVIDER_BEGINNING Show a divider at the beginning of the group. |
int | SHOW_DIVIDER_END Show a divider at the end of the group. |
int | SHOW_DIVIDER_MIDDLE Show dividers between each item in the group. |
int | SHOW_DIVIDER_NONE Don't show any dividers. |
int | VERTICAL |
继承常量
完整内容请查看http://www.zhdoc.net/android/reference/android/widget/LinearLayout.html