Android IDE (AIDE) Support Forum

AIDE Android Courses Event Listener

Hi everybody. I have a problem about event listener on Aide Android Courses. Is there a problem this code below.

	button.setOnLongClickListener(new OnLongClickListener(){
			@Override
			public Boolean onLongClick(View p1)
			{
				return true;
			}
	});

yeah it should be boolean not Boolean (lower case b) like most programming languages javas case sensitive so boolean and Boolean are actually 2 different things, the first is a primative and second is an object

Thank you very much. :))) Very simple mistake, but sometimes happen :): useful contribution for me.

yeah i think we all make this mistake at some point, glad i could help :+1: