android - Set onItemClickListener on only a particular card in CardScrollView? -
i making quiz app in google glass. after clicking main activity (which question) user taken list of cards, in mcardscrollview (which answers question in main activity), want user taken next question after correct option (i.e card in cardscrollview) clicked.
currently using following itemclicklistener turns every card clickable item,
public void onitemclick(adapterview<?> parent, view view, int position, long id) { // plays disallowed sound indicate tap actions not supported. audiomanager = (audiomanager) getsystemservice(context.audio_service); am.playsoundeffect(sounds.disallowed); toast.maketext(questionactivity.this, "this selected : " + position, toast.length_short).show(); //mcardscrollview.deactivate(); intent gotoquestion; gotoquestion = new intent(questionactivity.this, mainactivity.class); startactivity(gotoquestion); finish();
and trying follows on 1 of card in cardscrollview,
mcards.add(new cardbuilder(this, cardbuilder.layout.columns) .settext("this card has mosaic of puppies.") .setfootnote("aren't precious?") .addimage(r.drawable.ic_glass_logo)); .view.onclicklistener
thanks!
simple if-logic identify cards don't want return true should want without performing action.
public void onitemclick(adapterview<?> parent, view view, int position, long id) { if (!aclickablecard) { return true; } // ... }
Comments
Post a Comment