Sha256: 55e115cf43755af9d0732e683fa91adea9709f863f53e5a21013c9f2c102539e
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 KB
Contents
require 'ruboto/activity' ruboto_import_widgets :Button, :ImageButton, :LinearLayout, :TextView class ImageButtonAndButtonActivity include Ruboto::Activity 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, :gravity => android.view.Gravity::CENTER_HORIZONTAL do @text_view = text_view :text => 'What hath Matz wrought?', :id => 42, :text_size => 48.0, :width => :fill_parent, :gravity => android.view.Gravity::CENTER button :text => 'Button', :id => 44, :text_size => 48.0, :width => :fill_parent, :gravity => android.view.Gravity::CENTER, :on_click_listener => proc { @text_view.text = 'Button pressed' } image_button :image_resource => $package.R::drawable::get_ruboto_core, :id => 43, :width => :wrap_content, :on_click_listener => proc { @text_view.text = 'Image button pressed' } end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruboto-0.7.0 | test/activity/image_button_and_button_activity.rb |