i write my custom listbox item style. I Create my itemstyle.style.
I want to port this style on Android Platform but don't work.
I Add in Resource and bitmap itemstyle.style with identifier "Resource1"
In my code
var
Item: TListboxItem;
Style: TFMXObject;
begin
Item := TListboxItem.Create(nil);
Item.Parent := ListBox1;
Item.StyleLookup := 'Resource1';
Item.Text := 'Item 1';
end;
How to do it? Thank's an advanced. Marco.