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
7
votes
5 answers

Anchoring GUI components in FireMonkey

Just started testing FireMonkey and can't find a way to make dynamically sized/positioned components. VCL had the Anchor property, FM does not. Anybody see something I missed Update: Simple anchoring is not available in FM. You have to create…
Gregor Brandt
  • 7,659
  • 38
  • 59
7
votes
2 answers

What is the right way to destroy a form in Delphi?

I only kept main form in auto-create forms and removed the rest. Basically I call those forms with TMyForm.Create(Self).Show; But when my works are done with this form, how can I release the resources this form used with best way? I looked up…
Tak Kovac
  • 83
  • 6
7
votes
1 answer

Delphi - New apps on Google Play must target Android 8 (API level 26) - PUSH notification in background

From August 2018, all new apps on Google Play must target Android 8 (API level 26) or higher, and from November 2018, all app updates on Google Play must of the same apps on Google Play. Right now the only way you have to upload a new App that…
Juan M
  • 71
  • 4
7
votes
3 answers

How to add items to TListView with DynamicAppearance?

How can I add items to DynamicAppearance Listview in runtime? On design mode I created the layout of ListView which I want. I added 3 TTextObjectAppearance. How can I set those 3 TTextObjectAppearance text dynamically?
shariful
  • 455
  • 1
  • 9
  • 21
7
votes
1 answer

F2588 Linker error code: 1 ($00000001)

There is a problem. I am writing code Rad Studio in multi device application. When I compile the programme in Android debug,I am getting an error. Error : [DCC Fatal Error] F2588 Linker error code: 1 ($00000001) What should I do? Thank you in…
Nermin Ilgın
  • 111
  • 2
  • 4
7
votes
2 answers

Can I prevent XE8 from adding System.ImageList?

A Form in XE8 gets automatically the uses System.ImageList added. Like on the embarcadero site is said: System.ImageList contains the common for both FireMonkey and VCL code implementing the most basic device-independent features of image lists.…
davepaul12
  • 391
  • 4
  • 15
7
votes
1 answer

List raw sensor data in Memo

I want to list all available raw sensor data in a Memo for Android. Following code worked over the past years, but it doesn't work with XE8. There is probably an internal compiler bug. Is there anything I can do to make it work again, or is there an…
Daniel Marschall
  • 3,739
  • 2
  • 28
  • 67
7
votes
1 answer

Popup menu shown behind taskbar in FMX Delphi

So i've been working on this TrayIcon component based off of two different source codes. One for Windows, and one for Mac. Everything works fine except that when using an FMX TPopupMenu as the tray icon menu, it keeps popping up behind the taskbar…
vaid
  • 1,390
  • 12
  • 33
7
votes
2 answers

How to load custom cursor in Firemonkey?

I need to use custom cursor in my Firemonkey desktop project. I can use LoadCursorFromFile in VCL project to load a custom cursor in my project. I have tried to do the same for Firemonkey but it is not loading the cursor. Is there any working way to…
Saeid
  • 2,704
  • 5
  • 20
  • 20
7
votes
3 answers

Is there any way to add a hint or tooltip with FireMonkey?

I've earched for it but couldn't find anything. Is there any way to add a hint or tooltip with FireMonkey? Are there any components available that enable this? Ideally I am looking for something like this (a callout type tooltip): To the moderators…
Jamie
  • 657
  • 7
  • 18
7
votes
2 answers

How to display smooth video in FireMonkey (FMX, FM3)?

Has anyone figured out how to display smooth video (i.e. a series of bitmaps) in a FireMonkey application, HD or 3D? In VCL you could write to a canvas from a thread and this would work perfectly, but this does not work in FMX. To make things worse,…
Mike Versteeg
  • 1,615
  • 14
  • 28
7
votes
2 answers

Delphi Firemonkey Scale for High DPI Windows

I thought scaling an application in FireMonkey should be easy as it is supposed to work an a Retina-Mac too. It seems there is some background magic which chooses another style than, but this doesn't seem to be the case in Windows. In VCL there was…
Steffen Binas
  • 1,463
  • 20
  • 30
7
votes
0 answers

OmniThread alternatives for iOS/Android/OSX?

Are there any alternatives to OmniThread under iOS/Android/OSX? It does not need to be as complete as OmniThread, I just need to be able to have thread pools and TFuture<> classes. Thanks! UPDATE: Delphi XE7 now implements Future/Parallel/Task in…
Dmitry Streblechenko
  • 62,942
  • 4
  • 53
  • 78
7
votes
1 answer

TPagecontrol equivalent for Firemonkey

while changing software development from VCL frame work to Firemonkey, I can not understand where is the TPagecontrol component gone from the good old VCL framework. I already placed a TTabControl on my Form and added several Tabitemn, bit now I…
Franz
  • 1,883
  • 26
  • 47
7
votes
1 answer

How to find Resolution under Delphi XE5

I started to develop a game under Delphi XE5 for iOS. I have problem with the Resolution feature of the Firemonkey. When I open the screen and I check resolution on the iPhone I get 320x480. But the native resolution of the iPhone 4 and 5 is…