internal CalligraphyLayoutInflater(LayoutInflater original, Context newContext, int attributeId, bool cloned) : base(original, newContext) { this.attributeId = attributeId; calligraphyFactory = new CalligraphyFactory(attributeId); SetUpLayoutFactories(cloned); }
public PrivateWrapperFactory2(IFactory2 factory2, CalligraphyLayoutInflater inflater, CalligraphyFactory calligraphyFactory) : base(factory2, calligraphyFactory) => this.inflater = inflater;
public WrapperFactory(IFactory factory, CalligraphyLayoutInflater inflater, CalligraphyFactory calligraphyFactory) { this.factory = factory; this.inflater = inflater; this.calligraphyFactory = calligraphyFactory; }
public WrapperFactory2(IFactory2 factory2, CalligraphyFactory calligraphyFactory) { this.factory2 = factory2; this.calligraphyFactory = calligraphyFactory; }
internal CalligraphyLayoutInflater(Context context, int attributeId) : base(context) { this.attributeId = attributeId; calligraphyFactory = new CalligraphyFactory(attributeId); SetUpLayoutFactories(false); }