自定义View构造方法的推荐写法

来源:互联网 发布:ps怎么修改淘宝主图 编辑:程序博客网 时间:2024/05/21 14:53

 原文地址:http://blog.csdn.net/wcs542882916

 public ZoomClock(Context context) {

    this(context,null);

  }

 

  public ZoomClock(Context context, AttributeSet attrs) {

    this(context, attrs, 0);

  }

 

  public ZoomClock(Context context, AttributeSet attrs,int defStyle) {

    super(context, attrs, defStyle);

    mContext = context;

    // this broadcast sent by system everyminute

    // Constant Value:"android.intent.action.TIME_TICK"

    mIntentFilter = new IntentFilter(Intent.ACTION_TIME_TICK);

    mTimeChangedBroadcastReceiver =new TimeChangedBroadcastReceiver();

}

0 0
原创粉丝点击