I need to make a screen like this:

The only thing I need to add to my code
is something to put the background image
behind those buttons.
This is what I have so far:
public class PruebaScreen extends MainScreen{
public PruebaScreen(){
LabelField title = new LabelField("Screen Title");
title.setPadding(40, 0, 20, 60);
BitmapField btn1 = new BitmapField(Bitmap.getBitmapResource("btn-1.png"));
btn1.setPadding(2,0,3,0);
BitmapField btn2 = new BitmapField(Bitmap.getBitmapResource("btn-2.png"));
btn2.setPadding(2,0,3,0);
add(title);
add(btn1);
add(btn2);
}
}
How should I do to put those two buttons
over the background image?.
The image should not take all the screen.
Thanks in advance.
You should
VericalFieldManager)Here is a code snippet that creates a solid color background:
To make the background a bitmap, just replace
with