Jump to content

  • Log In with Google      Sign In   
  • Create Account

Awesome job so far everyone! Please give us your feedback on how our article efforts are going. We still need more finished articles for our May contest theme: Remake the Classics

#ActualBasfreak

Posted 16 March 2012 - 05:01 PM

Sorry for the late response.

I agree with you on the last part, I like my code to be structured logically. So I think I'll go with my second idea, I'll implement ContextMenu and override contextMenuOnClick() something like this:
public void contextMenuOnClick(ContextMenuItem clickedItem)
{
   if(clickedItem.getText() == "Item 1")
   {
	  // do something
   }
}

#1Basfreak

Posted 16 March 2012 - 05:00 PM

Sorry for the late response.

I agree with you on the last part, I like my code to be structured logically. So I think I'll go with my second idea, I'll implement ContextMenu and override contextMenuOnClick() something like this:
public void contextMenuOnClick(ContextMenuItem clickedItem)
{
   if(clickedItem.getText() == "Item 1")
   {
      // do somethine
   }
}

PARTNERS