crosswall / Android-Coverflow

A beautiful coverflow lib for android
Other
910 stars 164 forks source link

how to handle tap on central (elevated) item? #18

Open yargeel opened 8 years ago

yargeel commented 8 years ago

hello! how to handle tap on central (elevated) item? i'm trying to use your example (pagerContainer.setPageItemClickListener(new PageItemClickListener() ...) but it works for only side elements, not for central.

sonshark commented 7 years ago

My solution: view.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Toast.makeText(Normal2Activity.this,"view click " ,Toast.LENGTH_SHORT).show(); } });