我写了我的自定义列表框项目样式。我创建我的 itemstyle.style。
我想在 Android 平台上移植这种风格,但不工作。
我使用标识符“Resource1”添加资源和位图 itemstyle.style
在我的代码中
var
Item: TListboxItem;
Style: TFMXObject;
begin
Item := TListboxItem.Create(nil);
Item.Parent := ListBox1;
Item.StyleLookup := 'Resource1';
Item.Text := 'Item 1';
end;
怎么做?谢谢高级。马可。