自定义控件需要的构造函数:
自定义一个派生自View或ViewGroup类的控件时,必须实现构造函数,默认有3个构造函数,不同的场景引入,需要实现不同的构造函数,否则会报inflate错误
三个构造函数:
public 类名(Context context){
super(context);
}
public 类名(Context context,AttributeSet attrs){
super(context,attrs);
}
public 类名(Context context,AttributeSet attrs,int defStyle){
super(context,attrs,defStyle);
}
以下是不同场景使用,需要实现的构造函数:
XML里直接使用:
public 类名(Context context,AttributeSet attrs){
super(context,attrs);
}
addView函数:
功能说明:
动态添加控件都是通过addView来实现的
构造函数:
public void addView(View child);
public void addView(View child, int index)
public void addView(View child, LayoutParams params)
public void addView(View child, int index, LayoutParams params)
public void addView(View child, int width, int height)
参数:
child: 控件对象
index: 位置
params: 布局参数
width: 宽
height: 高
函数说明:
第一个函数:
在节点末尾添加一个View控件,布局使用默认布局,即layout_width=wrap_content, layout_height=wrap_content
第二个函数:
在指定位置添加一个View控件,index的取值有-1/0和正数,当取值为-1时,表示在末尾添加一个View控件,当取值为0时,表示在顶端添加一个View控件,当取值为正数时,表示在对应的索引位置插入一个View控件
第三个函数:
这个构造函数在上面的例子中一直在使用,它允许我们自定义布局参数
第四个函数:
这个函数不仅允许我们自定义布局参数,也允许我们指定添加控件的位置,index的取值和第三个函数相同
第五个函数:
我们在指定LayoutParams参数时一般只指定宽和高,这个函数简化了我们的需求,当只需要指定宽和高时,就可以直接使用这个函数
示例:
//要往哪个布局管理器添加
LinearLayout rootView =(LinearLayout)findViewById(R.id.root);
//自定义的控件
CustomView customView =new CustomView(this);
//构造宽高的属性
LinearLayout.LayoutParams layoutParams =new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,LinearLayout.LayoutParams.MATCH_PARENT);
rootView.addView(customView,layoutParams);
LayoutParams函数:
功能说明:
每一个容器都有各自的LayoutParams,因此容器是什么,就使用它对应的LayoutParams
举例:
LinearLayout.LayoutParams
RelativeLayout.LayoutParams
构造函数:
public LayoutParams(int width,int height)
public LayoutParams(Context c, AttributeSet attrs)
public LayoutParams(LayoutParams source)
第一个构造函数:
用于指定具体的宽和高,取值有LayoutParams.MATCH_PARENT/LayoutParams.FILL_PARENT和具体值
第二个构造函数:
用于从AttributeSet中取出layouit_width/layout_height等各属性的值
第三个构造函数:
直接从一个现成的LayoutParams中复制一份
1. 设置margin
示例:
LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
lp.setMargins(10, 20, 30, 40);
imageView.setLayoutParams(lp);
2.设置layout_weight(方法一)
构造函数:
public LayoutParams(int width, int height, float weight)
参数:
width: 宽
height: 高
weight: 权重
示例:
//要往哪个布局管理器添加
LinearLayout rootView =(LinearLayout)findViewById(R.id.root);
//自定义的控件
CustomView customView =new CustomView(this);
//构造宽高的属性
LinearLayout.LayoutParams layoutParams =new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,LinearLayout.LayoutParams.MATCH_PARENT,1.0f);
rootView.addView(customView,layoutParams);
3.设置layout_weight(方法二)
示例:
//要往哪个布局管理器添加
LinearLayout rootView =(LinearLayout)findViewById(R.id.root);
//自定义的控件
CustomView customView =new CustomView(this);
//构造宽高的属性
LinearLayout.LayoutParams layoutParams =new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,LinearLayout.LayoutParams.MATCH_PARENT);
layoutParams.weight=1.0f;
rootView.addView(customView,layoutParams);
4.设置layout_gravity
属性:
LayoutParams.gravity
属性介绍:
取值有Gravity.TOP/Gravity.BOTTOM/Gravity.LEFT/Gravity.RIGHT/Gravity.CENTER_VERTICAL/Gravity.CENTERHORIZONTAL等,这些属性值可以通过“|”运算符合并,比如垂直底部并且水平居中的写法是:Gravity.BOTTOM|Gravity.CENTER_HORIZONTAL
示例:
LinearLayout.LayoutParams layoutParams =new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,LinearLayout.LayoutParams.MATCH_PARENT);
layoutParams.gravity= Gravity.TOP;
rootView.addView(customView,layoutParams);
5.设置android:gravity
属性:
控件.setGravity
属性介绍:
取值有Gravity.TOP/Gravity.BOTTOM/Gravity.LEFT/Gravity.RIGHT/Gravity.CENTER_VERTICAL/Gravity.CENTERHORIZONTAL等,这些属性值可以通过“|”运算符合并,比如垂直底部并且水平居中的写法是:Gravity.BOTTOM|Gravity.CENTER_HORIZONTAL
示例:
RelativeLayout rootView = (RelativeLayout) findViewById(R.id.root);
RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, 200);
layoutParams.addRule(RelativeLayout.RIGHT_OF, R.id.text);
Button button = new Button(getContext());
button.setGravity(Gravity.TOP);
button.setText("btn");
rootView.addView(button, layoutParams);
rootView.setGravity(Gravity.TOP | Gravity.CENTER_HORIZONTAL);
设置相对属性:
构造函数:
public void addRule(int verb, int anchor)
参数:
verb: 相对布局属性
anchor: 相对哪个控件ID
示例:
//要往哪个布局管理器添加
RelativeLayout rootView = (RelativeLayout) findViewById(R.id.root);
//自定义的控件
CustomView customView = new CustomView(this);
//构造宽高的属性
RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.MATCH_PARENT, RelativeLayout.LayoutParams.MATCH_PARENT);
//第一个参数是指RelativeLayout的布局属性,第二个参数是指相对哪个控件ID
layoutParams.addRule(RelativeLayout.RIGHT_OF, R.id.text);
rootView.addView(customView, layoutParams);
ConstraintLayout属性:
//首先获得对应布局对象
ConstraintLayout ctlContent = popView.findViewById(R.id.ctl_content);
//构造约束属性,构造函数为宽高的属性
ConstraintLayout.LayoutParams layoutParams = new ConstraintLayout.LayoutParams(ConstraintLayout.LayoutParams.MATCH_PARENT, getDP(50));
添加约束规则:
layoutParams.bottomToBottom = ctlContent.getId();
layoutParams.bottomToTop = lastButtonView.getId();
//设置上边和父布局上边对齐
params.topToTop = ConstraintSet.PARENT_ID;
...以此类推
取消设定已经设置的约束:
ctlContentParams.topToTop = ConstraintSet.UNSET;
//把view添加到ConstraintLayout容器里
ctlContent.addView(view, layoutParams);
如果没有addView则需要强转成相应的布局,例如:
((ConstraintLayout) ctlContent).addView(view, new ConstraintLayout.LayoutParams(ConstraintLayout.LayoutParams.MATCH_PARENT, ConstraintLayout.LayoutParams.WRAP_CONTENT));
用充气方式自定义View:
1.首先在xml里声明必要的属性
<?xml version="1.0" encoding="utf-8"?>
<Button xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tv_item"
style="@style/ClearShadow"
android:layout_width="match_parent"
android:layout_height="50dp"
android:focusable="true"
android:gravity="center"
android:textSize="16sp" />
2.引入xml里声明的控件,再设置相对不同的属性(R.layout.item_ios_bottom为xml文件名)
//自定义的控件
Button button = (Button) LayoutInflater.from(context).inflate(R.layout.item_ios_bottom, null);
button.setText(text);
button.setId(View.generateViewId());
button.setBackground(stateListDrawable);
button.setTag(index);
button.setTextColor(itemColor);
button.setOnClickListener(this);
3.把设置不同的属性控件,利用addView添加到容器里
ctlContent.addView(button, layoutParams);
给View动态添加ID:
- 三种写法:
-
id从1开始递增 tv_leftBtn_title.setId(View.generateViewId());
- 自己写Utils类
/** * id * <p> * 兼容sdk17(4.2.2)以下 * <p> * Created by zst on 2016/12/5. */ private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1); public static int generateViewId() { for (; ; ) { final int result = sNextGeneratedId.get(); // aapt-generated IDs have the high byte nonzero; clamp to the range under that. int newValue = result + 1; if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0. if (sNextGeneratedId.compareAndSet(result, newValue)) { return result; } } } 调用: tv_leftBtn_title.setId(IdiUtils.generateViewId());
通过子View获取根布局:
//通过子View获取
ConstraintLayout layout = (ConstraintLayout) ((ViewGroup) titleView.getRootView().findViewById(android.R.id.content)).getChildAt(0);
//如果是在Activity里,则
ConstraintLayout layout = (ConstraintLayout) ((ViewGroup)findViewById(android.R.id.content)).getChildAt(0);