There is one MainScreen in my application. This screen contains many Vertical and Horizontal field managers, and all content is displayed successfully by scrolling.
This is my main VerticalFieldmanager code.
vfm_Main = new VerticalFieldManager() { public void paint(Graphics g) { g.setColor(Color.WHITE); g.drawBitmap(0,0,mybackgroundImage.getWidth(),mybackgroundImage.getHeight(),mybackgroundImage,0,0); super.paint(g); } protected void sublayout(int maxWidth, int maxHeight) { super.sublayout(Display.getWidth(),Display.getHeight()); setExtent(Display.getWidth(),Display.getHeight()); } };
There is one background image for this screen. When I look at this screen to see the full content of this screen, my background image also scrolls along with the content. For this reason, the background image looks so blurry and it repeats at the bottom of the screen.
I want to scroll only the contents of this screen. How to implement this?
I tried a lot, but did not get any tips and hits to prevent this? if anyone comes across this problem or have any idea please help me ...
Thanks in advance!
source share