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