0
votes

I'm developing an iOS and Android App with Firemonkey and try to modify or hide the ListView separator lines between the items. How can I hide or modify them?

In addition, I want to hide also the vertical scrollbar. Is this possible on this component?

1

1 Answers

2
votes

1. Right click on ListView and select "Edit Custom Style..." In Style Designer select "ListView1Style1" and set the Color of the "frame" item to be the same as Color of "background" item.

2.

var
  C: TControl;
begin
  for C in ListView1.Controls do
    if C is TScrollBar then
      C.Width := 0;
end;