我在 DELPHI XE5 上创建了这个功能,效果很好。您使用所有图标创建一个图像,将此图像加载到 TBitmap(在我的示例中为 IDE)中,并在表单中创建许多小 TRECTANGLE。
在 onCreate 期间,我调用 Mapping 方法来设置每个 Trectangle 的背景。
但在 DELPHI XE8 中,它不适用于 ANDROID
这是映射功能。
Procedure TForm1.Mapping(Const Obj:TRectangle;Const ofx,ofy:Integer);
Var
Arect : TRectF;
FBitmap : TBitmap;
Begin
Arect:=TRectF.Create(0,0,Obj.Width,Obj.Height);
Obj.Stroke.Kind := TBrushKind.None;
Obj.Fill.Kind := TBrushKind.Bitmap;
Obj.Fill.Bitmap.WrapMode := TWrapMode.TileOriginal;
//Create Crop Bitmap
FBitmap:=TBitmap.create( Round(Obj.Width), Round(Obj.Height)) ;
Try
FBitmap.Canvas.BeginScene();
FBitmap.Canvas.ClearRect(ARect,StringToAlphaColor('$00000000'));
FBitmap.Canvas.DrawBitmap(IDE,
TRectF.Create(ofx,ofy,ofx+Obj.Width,ofy+Obj.Height),
Arect, 100) ;
FBitmap.Canvas.EndScene;
//Assign Crop image to Rectangle object
Obj.Fill.Bitmap.Bitmap.Assign(FBitmap);
Finally
FBitmap.Free;
End;
End;
图片 (delphiXE.png) 部署在“asset/internal”中,并在 oncreate 中打开。
procedure TForm1.FormCreate(Sender: TObject);
Var Mfile:String;
begin
IDE := TBitmap.Create(ClientWidth,ClientHeight);
{$IFDEF ANDROID}
Mfile:=TPath.Combine(TPath.GetDocumentsPath, 'delphiXE.png');
{$ELSE}
Mfile:=TPath.Combine(ExtractFilePath(ParamStr(0)), 'delphiXE.png');
{$ENDIF}
If FileExists(MFile)
Then begin
IDE.LoadFromFile(MFile);
Mapping(Logo,0,0);
End
Else ShowMessage('NO '+MFile);
end;
在 Windows 中,一切正常,但在 Android 中没有,但如果我使用 Mapping(Logo,0,0) 添加一个简单的 onclick 事件;调用,映射工作,但我需要先点击灰色的 Trectangle 来设置它的背景
任何想法 ?
更新: 使用计时器,映射功能正在工作,trectangle 有很好的图片,但是如果我切换到另一个应用程序并返回我的应用程序,图片会消失,trectangle 会变回纯灰色。
这意味着 TRectangle 的内部绘制没有更新。为什么 ?