Sha256: 4a0eb7a1d227c654a2c49429863753af4d4f86a36c44e16cff0b6e6f6b2bdcb6
Contents?: true
Size: 875 Bytes
Versions: 1
Compression:
Stored size: 875 Bytes
Contents
require 'ruboto/widget' require 'ruboto/util/toast' ruboto_import_widgets :LinearLayout, :TextView class OptionMenuActivity def onCreate(bundle) super set_title 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 = text_view :text => 'What hath Matz wrought?', :id => 42, :text_size => 48.0, :width => :fill_parent, :gravity => android.view.Gravity::CENTER end end def onCreateOptionsMenu(menu) mi = menu.add('Test') mi.setIcon($package.R::drawable::get_ruboto_core) mi.set_on_menu_item_click_listener do |menu_item| @text_view.text = 'What hath Matz wrought!' toast 'Flipped a bit via butterfly' end true end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruboto-0.12.0.rc.0 | test/activity/option_menu_activity.rb |