Sha256: 2e7918b60ee0ca2ecef4a0de8d01e134628535b87ef73c77da3fc654c853e9b0

Contents?: true

Size: 972 Bytes

Versions: 1

Compression:

Stored size: 972 Bytes

Contents

require 'ruboto/activity'

ruboto_import_widgets :ImageButton, :LinearLayout, :TextView

class ImageButtonActivity
  include Ruboto::Activity

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

    click_handler = proc do |view|
      @text_view.setText 'What hath Matz wrought!'
      toast 'Flipped a bit via butterfly'
    end

    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, :width => :fill_parent,
                                 :gravity => android.view.Gravity::CENTER, :text_size => 48.0
          image_button :image_resource    => $package.R::drawable::get_ruboto_core, :width => :wrap_content, :id => 43,
                       :on_click_listener => click_handler
        end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruboto-0.7.0 test/activity/image_button_activity.rb