05-09-2011 10:32 AM
hello friends,
this is my coding....
public ResultScreen()
{
VerticalFieldManager _manager = (VerticalFieldManager)getMainManager();
Bitmap backgroundBitmap = Bitmap.getBitmapResource("2_3.png");
Background bg=BackgroundFactory.createBitmapBackground(backgr
_manager.setBackground(bg);
VerticalFieldManager v3=new VerticalFieldManager(Field.FIELD_HCENTER|Field.FIE
PictureBackgroundButtonField sampl=new PictureBackgroundButtonField(a,b,Field.FOCUSABLE);
sampl.setChangeListener(new FieldChangeListener() { public void fieldChanged(Field field, int context) {UiApplication ui = UiApplication.getUiApplication();ui.pushScreen(new ResultScreen2());}});
v3.add(sampl);
_manager.add(v3);
Now i want to add textfield and icon over this picture background button field.... is it possible... can anyone help me to solve this.... also is it possible to add fieldmanager over the picture background button field.......
05-10-2011 03:03 AM