Android 线性布局(LinearLayout)相关官方文档 - 参考部分


Android 线性布局(LinearLayout)相关官方文档 - 参考部分

太阳火神的美丽人生 (http://blog.csdn.net/opengl_es)

本文遵循“署名-非商业用途-保持一致”创作公用协议

转载请保留此句:太阳火神的美丽人生 -  本博客专注于 敏捷开发及移动和物联设备研究:iOS、Android、Html5、Arduino、pcDuino否则,出自本博客的文章拒绝转载或再转载,谢谢合作。



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



官方文档的参考文档,这么多年来总是会把我看晕了,每次都得细细地分析页面布局结构,现在这个 Summary ,有有些让人头疼,不过还好,我对照一下,感觉还是满清晰的,也许是真正掌握了文档的结构,也或许熟能生巧吧。
下面把这份 Summary 重新整理一下,其实也是按内容的组织结构,只不过,内容组织结构中用了一些表格嵌套不太明显而已。
近五年,研究一些文档或技术,我总是爱从上往下看,可能是岁数的关系,没有力量了,但我有法术,像拘小鬼儿一样,法台一搭,使其无所遁形 。
希望这种方法会帮助到更多的猿人们!

该 Summary 把该类所有的可能的内容,包括自身声明的和继承或从接口实现的,均列出来,使开发人员能对该类的来龙去脉,细节关系了如指掌。
但后面的详细字段、常量以方法等的描述,仅限该类自身的,至于从其它来源继承、实现的,可以通过 Summary 部分跳转至相应链接进行阅读。


1、嵌套类 
      Nested Classes



       2.1.1、From class android.view.ViewGroup
       2.1.2、From class android.view.View

    3.1、继承的常量  
        Inherited Constants  

        3.1.1、From class android.view.ViewGroup

    3.1.2、From class android.view.View

    Fields


        4.1.1、From class android.view.View


6、方法

    7.2、保护方法
                Protected Methods

    7.3、继承的方法
               Inherited Methods 






public class

线性布局 LinearLayout

extends ViewGroup
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。












郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。