Hi there,
I try to set a background image using jImageView on which i set
layoutParamHeight and
layoutParamWidth properties to
lpMatchParent but, i encounter issues
Method #1: using jImageList
I add my picture to the jImagelist and set ImageList and Imageindex properties of the JImageView component: it works fine
My problem is that i need a second jImageList to store icons for buttons (
all pictures in an jImageList need to have
the same size) and there is the issue: whatever jImageList i handle, the pictures are "mixed" between the two jImagelist components, with different sizes and, so, cannot be accessed by the Imageindex property.
every change on one jImagelist component affects the other too

How can i use more than one jImagelist in the application?
So, I tried method #2: using resources
I added to the project'sresources a bitmap file named background.bmp , I named the resource BACKGROUND
and i added the following code to the onCreate Event
procedure TAndroidModule1.AndroidModule1Create(Sender: TObject);
var bmp:jBitmap;
begin
bmp:=jBitmap.create(self);
bmp.LoadFromRes('BACKGROUND');
imageview1.SetImageBitmap(bmp);
end;
Issue: The picture is not loaded
could anyone help me please?