Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 2.01 KB

CHANGELOG.md

File metadata and controls

25 lines (22 loc) · 2.01 KB

Change Log

Version 1.0.1 (2011-10-16)

  • Improve sample code (ExampleActivity.java)
  • Add Apache License, Version 2.0 to this source code (see LICENSE.txt)

Version 1.0.0 (2011-10-15)

  • Fix 'container moves' bug as addressed in this issue. Thanx to The Vaan for giving me the clue.
  1. New improvements added by Kevin Pack:
  2. Action Item – new constructor with action id, title, icon
  3. Callback enhanced to return QuickAction object as source and action id (allows you to add items in any order as you base what was clicked on by the ID, not the pos)
  4. Action item supports sticky mode, if that is enabled the menu does not dismiss post button press. I needed this for my application.
  5. QuickAction has getActionItem(pos) call so you can get action item back. QuickAction has ArrayList of added items to support this
  6. QuickAction supports constructor with horizontal flag so you can run menu horizontally instead of just vertically
  7. If doing horizontal QuickAction loads the action_item_horizontal.xml and popup_horizontal.xml files instead of the vertical ones
  8. Added action_item_horizontal.xml with a centered image over a centered text label
  9. Added horiz_separator.xml file so you can show a separator between items in a horizontal layout
  10. Updated NewQuickAction3DActivity to show the toast message based on label of action item clicked as you now have enough info in callback to do that generically
  11. Update sample code to show sticky items in action, watching for dismiss action and extra menu items
  12. New listener to handle on dismiss event.
  13. Fix force close that occured when tapping randomly on a view to show QuickAction dialog (issue). Thanx to Zammbi for bug fixing..