我正在Delphi XE5上创建Firemonkey Mobile Application。我想使用TPaintBox组件来显示一些文本(2000多个单词,包含特殊字符,表格)。我用TListBox和包含TPaintBox的特殊TListBoxItem type TListBoxItemPaintBox = Class(TListBoxItem)
创建了表单。想法很简单 - 在TPaintBox上我会绘制数据,而TListBox会关注滚动。
当这个应用程序在Win32下编译时,一切运行都很完美,滚动很快。但是,当我在Android手机上编译这个应用程序时,应用程序变得毫无用处 - 滚动是令人难以置信的ss-ll-oooo-www。
以下是我的应用程序的完整代码(简化但工作版本)
unit Unit1;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Layouts,
FMX.ListBox, FMX.StdCtrls, FMX.Objects, System.UIConsts;
type
TListBoxItemPaintBox = Class(TListBoxItem)
public
pbMain: TPaintBox;
List: TStringList;
constructor Create(AOwner: TComponent); override;
procedure pbMainOnPaint(Sender: TObject; Canvas: TCanvas);
end;
type
TForm1 = class(TForm)
Panel1: TPanel;
Button1: TButton;
lbMain: TListBox;
procedure Button1Click(Sender: TObject);
end;
var
Form1: TForm1;
implementation
{$R *.fmx}
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
{TListBoxItemPaintBox}
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
constructor TListBoxItemPaintBox.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
self.Height := 200;
self.Text := '';
pbMain := TPaintBox.Create( self );
pbMain.Parent := self;
pbMain.Align := TAlignLayout.alClient;
pbMain.OnPaint := pbMainOnPaint;
end;
procedure TListBoxItemPaintBox.pbMainOnPaint(Sender: TObject; Canvas: TCanvas);
// pbMain.OnPaint := pbMainOnPaint;
var
i, vertPos: Integer;
s: String;
rect: TRectF;
begin
vertPos := 0;
Canvas.BeginScene;
Canvas.Clear(claWhite);
Canvas.Fill.Color := claBlack;
Canvas.Font.Style := [];
Canvas.Font.Size := 12;
for i := 0 to List.Count-1 do
begin
s := List[i];
rect.Create(0,
vertPos,
Canvas.TextWidth(s),
vertPos+Canvas.TextHeight(s));
Canvas.FillText(rect, s, false, 255, [],
TTextAlign.taLeading ,TTextAlign.taCenter);
vertPos := vertPos + 15;
end;
self.Height := vertPos;
pbMain.Canvas.EndScene;
end;
//%%%%%%%%%%%%%%%%%%%%%
{TForm1}
//%%%%%%%%%%%%%%%%%%%%%
procedure TForm1.Button1Click(Sender: TObject);
var
ListTemp: TStringList;
aListBoxItem: TListBoxItemPaintBox;
i: Integer;
begin
ListTemp := TStringList.Create;
for i := 0 to 80 do
ListTemp.Add(IntToStr(i));
aListBoxItem := TListBoxItemPaintBox.Create( lbMain );
aListBoxItem.List := ListTemp;
lbMain.AddObject(aListBoxItem);
end;
end.
有没有人知道如何在Android上运行?是否有一些更适合使用TPaintBox的方法,还是应该使用完全不同的组件?
答案 0 :(得分:0)
ListBox不是拥有如此多记录的正确容器,因为它非常慢,但它确实比其他人更可定制。您必须使用ListView组件才能实现速度和正常滚动。让它显示你想要的所有东西会有点痛苦,因为它有点受限于它自己。您必须制作自己的样式,当项目通过代码创建时,项目将在其上进行监听。
这是一个非常有用的视频,介绍如何从Ray Konopka实现这一目标。
http://www.youtube.com/watch?v=XRj3qjUjBlc&list=PLwUPJvR9mZHiaYvH9Xr7WuFCVYugC4d0w&index=23