View子類的實例化。若是是在activity中經過findViewById的形式實例化,那麼它的具體的構造函數是什麼呢,看看父類View的源碼就容易發現是函數
經過這個構造函數實例化的this
public View(Context context, AttributeSet attrs) { this(context, attrs, 0); }
這裏要傳入上下文,而後是AttributeSet參數,這個參數是XML文件解析出來得一個參數。spa