listLabel.setText(imageName);
cell.addChild(listLabel);
listLabel.setPositionRelativeToParent(cell.getCenterPointLocal());
cell.unregisterAllInputProcessors();
cell.registerInputProcessor(new TapProcessor(getMTApplication(), 15));
cell.addGestureListener(TapProcessor.class, new IGestureEventListener() {
public boolean processGestureEvent(MTGestureEvent ge) {
TapEvent te = (TapEvent)ge;
switch (te.getTapID()) {
case TapEvent.BUTTON_DOWN:
cell.setFillColor(cellPressedFillColor);