2
我在LayoutInflater
代碼中看到實際視圖類爲instantiated via reflection(LayoutInflater
- createView()
方法),但是我無法看到在該視圖上設置了實際屬性的位置。LayoutInflater屬性
有人可以指向AttributeSet
實際應用於instantaited視圖的位置嗎?
我在LayoutInflater
代碼中看到實際視圖類爲instantiated via reflection(LayoutInflater
- createView()
方法),但是我無法看到在該視圖上設置了實際屬性的位置。LayoutInflater屬性
有人可以指向AttributeSet
實際應用於instantaited視圖的位置嗎?
見584行中提到代碼:
Object[] args = mConstructorArgs;
args[1] = attrs;
return constructor.newInstance(args);
這是在底部...,請檢查:
Object[] args = mConstructorArgs;
args[1] = attrs;
return constructor.newInstance(args);
哈哈,看起來並不足夠接近。謝謝。 – Steve 2012-03-30 15:23:10