03-26-2010, 10:09 PM
|
#1 (permalink)
|
| New Member
Join Date: Mar 2010 Model: 9550 PIN: N/A Carrier: telus
Posts: 11
Post Thanks: 0 Thanked 0 Times in 0 Posts
| Scroll help Please Login to Remove! I have put a large Bitmap on a screen and have made it scroll to be able to see the whole Bitmap...
My problem is when I add buttons underneath the Bitmap it will not scoll the whole vertical length of the Bit map
ap logoBitmap = Bitmap.getBitmapResource("large2.png");
private BitmapScroller bitmapScroller;
private ButtonField storeButton;
private ButtonField findButton;
{
bitmapScroller = new BitmapScroller(logoBitmap);
add(bitmapScroller);
bitmapScroller.setChangeListener(this);{
storeButton = new ButtonField("FIND a STORE", ButtonField.CONSUME_CLICK);
storeButton.setChangeListener(this);
findButton = new ButtonField("FIND a BOTTLE", ButtonField.CONSUME_CLICK );
findButton.setChangeListener(this);
HorizontalFieldManager buttonManager = new HorizontalFieldManager(Field.FIELD_HCENTER);
buttonManager.add(storeButton);
buttonManager.add(findButton);
add(buttonManager);
;
}
}
public void fieldChanged(Field field, int context) {
if(field == storeButton){
UiApplication.getUiApplication().pushScreen(new ScrollTest());
}
}
}
Can someone let me know what I have missed
Cheers!!! |
| Offline
| |