布局元素


一,自定义布局元素

      1 ,在顶层的元素中添加:

             xmlns:custom="http://schemas.android.com/apk/res/package_name";

      2,在attrs.xml中添加自定义的布局字段;

 

<?xml version="1.0" encoding="UTF-8"?>
<resources>
	<declare-styleable name="custom">
	<attr name="clear" format="boolean"/>


	</declare-styleable>
</resources>

      3,在具体的元素中使用自定义的字段

            custom:clear="true"


二:android_weight的作用

      android:layout_weight是指LinearLayout先给里面的控件分配完大小之后剩余空间的权重


   

你可能感兴趣的:(布局元素)