Sha256: 08e0eab3c432116efc677f105b0ae24388b03afbc899a4160f167977659eaf33
Contents?: true
Size: 1.13 KB
Versions: 15
Compression:
Stored size: 1.13 KB
Contents
require 'ruboto/widget' ruboto_import_widgets :Button, :ImageButton, :LinearLayout, :TextView class ImageButtonAndButtonActivity def onCreate(bundle) super 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, :layout => {:width => :fill_parent}, :gravity => android.view.Gravity::CENTER button :text => 'Button', :id => 44, :text_size => 48.0, :layout => {: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, :layout => {:width => :wrap_content}, :on_click_listener => proc { @text_view.text = 'Image button pressed' } end end end
Version data entries
15 entries across 15 versions & 1 rubygems