Sha256: b5cdc90d3cf54adf1cbbd4c44395d28705bbd709ede0619ceeacd38e0fd69de8
Contents?: true
Size: 929 Bytes
Versions: 3
Compression:
Stored size: 929 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.icon = $package.R::drawable::get_ruboto_core 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ruboto-0.11.0 | test/activity/option_menu_activity.rb |
ruboto-0.11.0.rc.1 | test/activity/option_menu_activity.rb |
ruboto-0.11.0.rc.0 | test/activity/option_menu_activity.rb |