Friday, February 21, 2014
Thursday, February 20, 2014
Wednesday, February 19, 2014
Android - How to apply color filter over ImageView component (link)
http://stackoverflow.com/questions/8193447/i-want-to-add-a-color-filter-to-the-imageview
If you want to use your predefined colours get them this way e.g. :
v.setColorFilter(getResources().getColor(R.color.green), PorterDuff.Mode.SRC_ATOP);
Thursday, February 13, 2014
Tuesday, February 11, 2014
Android - How to force use of overflow menu on devices with menu button
http://stackoverflow.com/questions/9286822/how-to-force-use-of-overflow-menu-on-devices-with-menu-button
try {
ViewConfiguration config = ViewConfiguration.get(this);
Field menuKeyField = ViewConfiguration.class.getDeclaredField("sHasPermanentMenuKey");
if(menuKeyField != null) {
menuKeyField.setAccessible(true);
menuKeyField.setBoolean(config, false);
}
} catch (Exception ex) {
// Ignore
}
Java primitives types size chart
Below in the chart the size (in bytes) of primitive type goes next to its name.
1 byte
2 short
4 int
8 long
8 double
4 float
2 char
1 boolean
The way to highlite grid's selected rows in GXT v2
public void colorLockedGridRows() {
Grid grid = gridView.getGrid();
ListStore<BeanModel> store = grid.getStore();
for (BeanModel model : store.getModels()) {
SecurityGroupVO bean = model.getBean();
if ( bean.isLocked() ) {
Element row = grid.getView().getRow(model);
row.addClassName("locked-row-background-color");
}
}
}
Grid grid = gridView.getGrid();
ListStore<BeanModel> store = grid.getStore();
for (BeanModel model : store.getModels()) {
SecurityGroupVO bean = model.getBean();
if ( bean.isLocked() ) {
Element row = grid.getView().getRow(model);
row.addClassName("locked-row-background-color");
}
}
}
Wednesday, February 5, 2014
Subscribe to:
Posts (Atom)