Android 线性布局(LinearLayout)相关官方文档 - 参考部分
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
由于在线文档访问困难,这里给出的是本地文档的相对路径。
重点摘要:
译文来源:reference/android/widget/LinearLayout.html
Nested Classes
3.1.1、From class android.view.ViewGroup
3.1.2、From class android.view.View
Methods
java.lang.Object | |||
? | android.view.View | ||
? | android.view.ViewGroup | ||
? | android.widget.LinearLayout |
Known Direct Subclasses |
类概述
Class Overview
一个在单行或单行排列其子视图的布局。行的方向可以通过调用 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。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。