Questions tagged [firemonkey]

FireMonkey(tm) is the cross-platform GUI framework developed by Embarcadero Technologies, a part of Idera Inc. and is a part of the RAD Studio development tool.

FireMonkey is a cross-platform UI framework for Windows, Mac OS X, iOS and Android providing windows and controls on both 2D surfaces and 3D environments. It uses GPU-accelerated rendering, allowing smooth effects and animation to be applied to controls and other on-screen images, and is vector-based and skinnable, building its controls from a library of underlying primitives. Skins give close-to-native look and feel.

FireMonkey currently supports Mac OS X, Win 32bit & 64bit as well as iOS and Android.

3809 questions
4
votes
2 answers

Delphi XE2 on iOS with Indy or Third Party Internet Components

Are there third party components available for Delphi XE2 to create iOS applications with Internet support? For example, the Indy components that ship with Delphi XE2 do not work with a FireMonkey iOS app. I want to be able to communicate with a…
Thomas Jaeger
  • 923
  • 1
  • 9
  • 27
4
votes
1 answer

Firemonkey equivalent to ActionList?

Just started exploring the surface of Firemonkey in Delphi XE2. I've noticed that it has no TActionList component, and none of the components have an Action property (except for TButton, strangely). Is there a new and better way for managing…
kes
  • 5,983
  • 8
  • 41
  • 69
4
votes
0 answers

Why my TPath SVG is cut in Fit mode using Stroke

With Delphi 11 I have a problem with TPath and SVG data. For exemple, if I put a TPath and set Data with a circle : M13 25C19.6274 25 25 19.6274 25 13C25 6.37258 19.6274 1 13 1C6.37258 1 1 6.37258 1 13C1 19.6274 6.37258 25 13 25Z I set Width and…
Bosshoss
  • 783
  • 6
  • 24
4
votes
1 answer

Delphi XE2: Application build with runtime package with FireMonkey framework

We can build VCL Win32 application with runtime packages (*.bpl). These package can be loaded and unloaded dynamically or statically. Do we have similar development option with the new FireMonkey framework in Delphi XE2?
Chau Chee Yang
  • 18,422
  • 16
  • 68
  • 132
4
votes
2 answers

Delphi XE2 Firemonkey iOS app controls compatibility

As you all know, Embarcadero just released Delphi XE2. I have download it and i am very excited about having an way of creating an iOS app. To create the iOS app we should export the code to xcode. But the question is: does every control works on…
Rafael Colucci
  • 6,018
  • 4
  • 52
  • 121
4
votes
1 answer

Firemonkey: How to detect when the OS (Android/iOS) is going to shutdown

I am dealing with the following issue with Firemonkey (Delphi 10.4): When the Android OS will shut down and my app is still running, it does not trigger the OnCloseQuery, OnClose, and nor the OnDestroy events. Is there a way to detect or intercept…
LUIS A. GAMA
  • 117
  • 6
4
votes
1 answer

How detect the mouse back and forward buttons in a Delphi FMX Windows form?

Has anyone found a way to detect the mouse back and forward buttons in a Delphi FMX form in Windows (and only Windows)? I understand this works fine in a VCL application, using procedure WMAppCommand(var Msg: Winapi.Messages.TMessage); message…
Domus
  • 1,263
  • 7
  • 23
4
votes
2 answers

How to rotate TPathData (vector path)?

I have TPathData arrow and draw directly on Canvas. How to rotate TPathData? I know about rotating Tpath but I draw directly on Canvas (lines and arrows). I tried to rotate Tpath and the get Data string - but it is the same as before.
alitrun
  • 1,127
  • 8
  • 14
4
votes
1 answer

Target Android API 29 on Delphi 10.3.3

I have the Delphi 10.3.3, and I have some apps on Google Play that I update frequently. The case is that on Nov 2, I will have to target API 29 on my apps. The thing is that Delphi 10.3.3 does not do this automatically. So this is the list of things…
Arnau Serra
  • 83
  • 2
  • 7
4
votes
2 answers

Delphi/FMX: How to add a dynamically created top-aligned component under all previously added top-aligned components, instead of second from the top?

I am making an app for Android with Delphi and FMX. In the onclick-procedure of a button I dynamically create a TPanel (with some components in it) which I then add to a TVertScrollBox. I want the TPanels to stack on top of each other, so I set the…
Sara
  • 53
  • 3
4
votes
1 answer

Cannot load sqlite libraries in Android with Delphi 10.4

With Delphi 10.4 I get an error in my Android App (same error for both 32bit and 64bit). [FireDAC][Phys][SQLite]-314. Cannot load vendor library [libsqlite.so or libdb_sql.so]. Hint: check it is in the PATH or application EXE directories, and has…
4
votes
0 answers

What the purpose of the System.StartUpCopy included in all firemonkey project?

When I create a new mobile app with Delphi, I have this dpr source: program Project1; uses System.StartUpCopy, FMX.Forms, Unit1 in 'Unit1.pas' {Form1}; {$R *.res} begin Application.Initialize; Application.CreateForm(TForm1, Form1); …
zeus
  • 12,173
  • 9
  • 63
  • 184
4
votes
1 answer

Transparent background TStringGrid

The question is about creating a transparent background in the TStringGrid control. The idea was to modify the white color that is created by default in the grid and use a null color, but I have not succeeded. I share here what has been done so…
Silver
  • 193
  • 9
4
votes
0 answers

how to configure tls on Delphi TRestClient component

Helo, I typed the code as follows and this code works well. By using an https connection I hope that the Packet Data received cannot be read by applications such as Wireshark or the Packet Capture application on Android. how do you configure the…
mgk
  • 71
  • 5
4
votes
1 answer

This app is no longer compatible with your device

I have uploaded my first app to the Google Play Store which was compiled using the latest Rad Studio Rio Version (10.3.2). When using one of the tablets I testes the app with the Play Console app says: Your Device isn't compatible with this…
Anthony
  • 61
  • 4