/**
* 构造函数会在代码里面new的时候被调用
* TextView tv = new TextView();
* @param context
*/
public TextView(Context context) {
super(context);
}
/**
* 在布局layout使用(调用)
* <com.itjs.view1.TextView
* android:layout_width="wrap_content"
* android:layout_height="wrap_content"
* android:text="view1"/>
* @param context
* @param attrs
*/
public TextView(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
}
/**
* 在布局layout使用(调用),但是会有style
* <com.itjs.view1.TextView
* android:text="textView"
* android:text="view1"
* style="@style/defualt"/>
* @param context
* @param attrs
* @param defStyleAttr
*/
public TextView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
Android自定义View-构造方法调用场景(TextView)
最新推荐文章于 2024-08-23 23:20:47 发布
该文章详细介绍了Android中TextView类的三个构造函数,分别是无参数构造、带AttributeSet参数构造以及带默认样式参数的构造。这些构造函数在XML布局解析时被调用,用于创建和初始化TextView对象。
摘要由CSDN通过智能技术生成