标签:
Android 线性布局(LinearLayout)相关官方文档 - 参考部分
太阳火神的美丽人生 (http://blog.csdn.net/opengl_es)
本文遵循“署名-非商业用途-保持一致”创作公用协议
Android 官方文档线性布局相关资源链接汇总如下:
android-sdk-macosx-4.4.2/docs/guide/topics/ui/layout/linear.html
android-sdk-macosx-4.4.2/docs/reference/android/widget/LinearLayout.html
android-sdk-macosx-4.4.2/docs/reference/android/widget/LinearLayout.LayoutParams.html
由于在线文档访问困难,这里给出的是本地文档的相对路径。
重点摘要:
3.1.1、From class android.view.ViewGroup
3.1.2、From class android.view.View
java.lang.Object | |||
? | android.view.View | ||
? | android.view.ViewGroup | ||
? | android.widget.LinearLayout |
Known Direct Subclasses |
一个在单行或单行排列其子视图的布局。行的方向可以通过调用 setOrientation()
来设置。也可以指定重力(gravity),它会通过调用 setOrientation()
来指定所有子元素的对齐方式;或通过设置 LinearLayout.LayoutParams 的权重(weight)成员变量来指定特定的子视图扩展以填充布局中的余下空间。默认方向是水平方向(horizontal)。
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.
查看 线性布局指南。
See the Linear Layout guide.
也可以查看 android.widget.LinearLayout.LayoutParams
获得布局属性。
Also see android.widget.LinearLayout.LayoutParams
for layout attributes。
Android 线性布局(LinearLayout)相关官方文档 - 参考部分
标签:
原文地址:http://blog.csdn.net/opengl_es/article/details/46416201