Method: RMQTextViewStyler#finalize

Defined in:
lib/project/ruby_motion_query/stylers/rmq_text_view_styler.rb

#finalizeObject



50
51
52
53
54
55
56
57
# File 'lib/project/ruby_motion_query/stylers/rmq_text_view_styler.rb', line 50

def finalize
  super
  if @lazy_typeface
    @text_style ||= Android::Graphics::Typeface::NORMAL
    typeface = Android::Graphics::Typeface.create(@font_family, @text_style) if @font_family
    @view.setTypeface(typeface, @text_style) # ok for typeface to be nil
  end
end