I want to create a background for the screen, which will not move when scrolling the screen. My current code looks something like this:
Bitmap bitmap = Bitmap.getBitmapResource("background.png"); setBackground(BackgroundFactory.createBitmapBackground(bgBmp));
However, this will create a free background, which means that if the screen fields are stretched on the screen when the user scrolls the screen, the background will move and the rest of the screen will be smaller. I do not want the background to be repeated over and over for stretched parts. However, what I want is a background that remains attached to the display, and the rest of the fields scroll over it. Do you know any direct or indirect way to do this?
aligf source share