DualListField から拡張された新しい XY クラスを作成します。この XY クラスでは、次のように定義します。
public clas XY <D extends ModelData> extends DualListField<D>{
public static final int leftButton = 0x1;
public static final int rightButton = 0x2;
public static final int allLeftButton = 0x3;
public static final int allRightButton = 0x4;
public static final int upButton = 0x5;
public static final int downButton = 0x6;
List<Integer> buttonsToRemoveList;
public CustomDualListField(List<Integer> buttonsToRemoveList){
super();
this.buttonsToRemoveList = buttonsToRemoveList;
}
@Override
protected void onRender(Element target, int index) {
super.onRender(target, index);
if(buttonsToRemoveList != null){
for(Integer val:buttonsToRemoveList){
switch(val.intValue()){
case leftButton:{
buttonBar.remove(left);
break;
}
case rightButton:{
buttonBar.remove(right);
break;
}
case allLeftButton:{
buttonBar.remove(allLeft);
break;
}
case allRightButton:{
buttonBar.remove(allRight);
break;
}
case upButton:{
buttonBar.remove(up);
break;
}
case downButton:{
buttonBar.remove(down);
break;
}
}
}
}
}
}
このアプローチでは、表示されるボタンを構成できます。