1

我在 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 的内部绘制没有更新。为什么 ?

4

2 回答 2

3

感谢您的帮助,我找到了解决方案和问题的根源。

Trectangle 中的图片并不持久这一事实帮助了我。

//Assign  Crop  image to Rectangle objects 
Obj.Fill.Bitmap.Bitmap.Assign(FBitmap);

不再像在 Android 上的 DELPHI XE5 上那样工作。它是复制位图,但不是以持久的方式。这就是为什么它与 onclick 一起工作,但当我切换应用程序时消失。

所以,我改变了这一行

// Force the size of TRectangle internal Bitmap
Obj.Fill.Bitmap.Bitmap.SetSize(FBitmap.Width,FBitmap.Height);
// Copy the crop bitmap in TRectangle Internal Bitmap
Obj.Fill.Bitmap.Bitmap.CopyFromBitmap(FBitmap);

在我的测试项目中,它正在工作。

我希望这可以帮助另一个开发人员。

于 2015-04-12T18:45:17.843 回答
0

您是否尝试测试 Canvas.BeginScene 的返回?如果失败,则说明图形上下文系统没有成功初始化。(是的,在 XE5 和其他可能的工作上,去看看,他们可能会在某个地方改变初始化序列) 在创建阶段,当然没有异常。您应该在其他地方执行此操作。

于 2015-04-12T18:15:42.723 回答