Sha256: 4c41d44e8bdc1319d4b39f18c6fa7a8132c038fb9e67321a8a947003cf24abed

Contents?: true

Size: 742 Bytes

Versions: 1

Compression:

Stored size: 742 Bytes

Contents

require 'ruboto/activity'
require 'ruboto/widget'

ruboto_import_widgets :LinearLayout, :TextView

class MarginsActivity
  def on_create(bundle)
    setTitle File.basename(__FILE__).chomp('_activity.rb').split('_').map { |s| "#{s[0..0].upcase}#{s[1..-1]}" }.join(' ')

    self.content_view =
        linear_layout :orientation => LinearLayout::VERTICAL do
          @text_view_margins = text_view :text => 'What hath Matz wrought?', :id => 42, :margins => [100,0,0,0]
          @text_view_layout = text_view :text => 'What hath Matz wrought?', :id => 43, :layout => {:set_margins => [100,0,0,0]}
          @text_view_fieldset = text_view :text => 'What hath Matz wrought?', :id => 44, :layout => {:left_margin= => 100}
        end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruboto-0.8.0 test/activity/margins_activity.rb