Android XML属性在文档中的位置

来源:互联网 发布:21天学通java知乎 编辑:程序博客网 时间:2024/03/29 20:27

Android XML属性比较多,全部记住不太现实,用的时候查文档是一条途径。如何迅速找到所需的XML属性?

 

Android包下面android.R.styleable类包含下面所有组件相关的XML属性。

 

如:

public static final int[] LinearLayout_Layout

Since: API Level

Attributes that can be used with a LinearLayout_Layout.

Includes the following attributes:

AttributeDescriptionandroid:layout_gravity Standard gravity constant that a child can supply to its parent.android:layout_height Specifies the basic height of the view.android:layout_weightandroid:layout_width Specifies the basic width of the view.

 

值得一提的是:android:layout_gravity属性在TextView里面也能用。如设置TextView居中就需要这样:

android:layout_gravity="center_horizontal'.

可是TextView并没有继承android.widget.LinearLayout.LayoutParams。

这说明他们之间的属性是通用的。

原创粉丝点击