InitApp for Android in XE8 FiremonkeyHi,
I am trying to get the following code examples to work:
http://cc.embarcadero.com/Item/29684 Crossplatform OpenGL XE2/XE5 CubeMan3D Demo;
http://cc.embarcadero.com/Item/29682
They work fine in Windows, but fail for the Android because InitApp is not found.
I assume this is because it moved to another unit, but I cannot find it in the document, on the web, or in any units I have looked for. Does anyone know where it is?
From the author of CubeMan:
Well CubeMan3D works under XE8 if you add the unit Androidapi.NativeActivity and replace "InitApp" by "PA...
Android USB debugging windows 10Hi
I see there is someone else reported this (thread was locked)
Its not working for me either after a windows 10 update (from windows 8.1)
does not even show in device manager...no searching for drivers..no dong..nada
seems like a missing driver with windows 10?
thanks
Brian
What version of XE are you running? I think I have seen improvements the more recent the version of XE, so this is one of the areas where maintenance will help. XE8 still have issues (finding the SDK manager and opening it is still problematic).....
...
Ann: FastReport FMX for Delphi XE3 (FireMonkey 2) and XE2 (FireMonkey) releasedDear friends,
Visual report designer is available now on both MS Windows and MAC OS X!
Full sources.
We can write here full list of possibilities, but it will so long. Let
see FastReport VCL and FastReport FMX comparison table:
http://www.fast-report.com/en/products/comparison-fast-report-firemonkey-vcl.html
And all of this - just now in your hands for business-applications for Mac.
Report generator FastReport FMX is the first multiplatform solution for
including Business Intelligence into software based on Embarcadero
FireMonkey IDE (Delphi for MS Windows and Apple Mac OS X)...
Android USB debugging windows 10 [Edit]Hi
I see there is someone else reported this (thread was locked)
Its not working for me either after a windows 10 update (from windows 8.1)
does not even show in device manager...no searching for drivers..no dong..nada
seems like a missing driver with windows 10?
thanks
Brian
update
i did not have the usb plug in firmly enough on phone
now error about device descripter request failed in device manger
will keep trying
Edited by: Brian Hamilton Hamilton on Aug 17, 2015 7:13 PM
This procedure is a mess.
If you have a Nexus 7 (and probably others), you have to change it to ...
Ann: X-platform report generator for Delphi XE3 (FireMonkey 2) and XE2 (FireMonkey) releasedDear friends,
Visual report designer is available now on both MS Windows and MAC OS X!
Full sources.
We can write here full list of possibilities, but it will so long. Let
see FastReport VCL and FastReport FMX comparison table:
http://www.fast-report.com/en/products/comparison-fast-report-firemonkey-vcl.html
And all of this - just now in your hands for business-applications for Mac.
Report generator FastReport FMX is the first multiplatform solution for
including Business Intelligence into software based on Embarcadero
FireMonkey IDE (Delphi for MS Windows and Apple Mac OS X)...
is possible to build an Android .SO with Delphi Firemonkey XE6 ? Thanks.is possible to build an Android .SO with Delphi Firemonkey XE6 ? Thanks.
> {quote:title=Aldo Lacavalla wrote:}{quote}
> is possible to build an Android .SO with Delphi Firemonkey XE6 ? Thanks.
Have a look in your Android output directory
--
Linden
"Mango" was Cool but "Wasabi" was Hotter but remember it's all in the "source"
> {quote:title=Linden ROTH wrote:}{quote}
> > {quote:title=Aldo Lacavalla wrote:}{quote}
> > is possible to build an Android .SO with Delphi Firemonkey XE6 ? Thanks.
>
>
> Have a look in ...
Delphi XE8 FireMonkey iOS Style problem with segmented buttonsHi,
Going through some tutorials to get used to mobile development using FireMonkey and Delphi XE8. One of the most basic layouts tend to use the toolbar component with segmented speed buttons, and then applying the correct segmented style to each button.
However, there seems to be an issue with the iOS style.
...
Android C demo program to Firemonkey Delphi (Will Pay)I have a C demo program for the Android platform that I need to
convert to Firemonkey and Delphi XE5. This demo logic is written in
pure C, and reads one of 5 canned barcodes. Page39a contains those
barcodes. The goal is to scan those codes and react accordingly. This
conversion will serve as a learning process for me. I am willing to
pay for this conversion if need be.
Thanking you all in advance and I look forward to any
recommendations.
Andy
http://www.odesk.com/ has developers for hire.
Thanks Eli. I will check it out.
Andy
On Thu, 29 May 2014 06:18:43 -0700, Eli...
Delphi XE8 FireMonkey iOS Style problem with segmented buttons [Edit]Hi,
Going through some tutorials to get used to mobile development using FireMonkey and Delphi XE8. One of the most basic layouts tend to use the toolbar component with segmented speed buttons, and then applying the correct segmented style to each button.
However, there seems to be an issue with the iOS style. [Screenshot.|https://drive.google.com/file/d/0B68Ju-patBf-RVVEMmI5UDd2cG8/view?usp=sharing]
Using the "segmentedbuttonleft", "segmentedbuttonmiddle", and "segmentedbuttonright" styles is producing an extra border on the right button in iOS. It seems...
FiremonkeyI am so dammed frustrated with firemonkey and livebindings.
The VCL + DB Controls were fast, consistent, and stable. This fmx
framework is crap. It's slow on my i5 Macbook. I'd be embarrassed to
put out an app like this. The help is lousy and apparently very few
people are using it based on my failed Google searches. I can see why.
Livebindings is cute when you have a few fields, but it a rats nest when
you have a moderately complex form and have to wire up dozens of
controls. There is no official support for nullable fields in
livebindings which blows my mind....
TBitmap gets smaller on rotation in delphi xe8 firemonkey multi device projI have an TImage compontent with a bitmap. The image component size properties are singles and TBitmap size properties are integers. The bitmap needs to be the same size as the component and i've made a resize method that gets called everytime the screen rotates.
So i've tried to trunc the component size in order to set the size and tried to round it, but every time the bitmap gets smaller.
I also tried to cast the sizes of the image component to integer so it doesn't have to round the size for the bitmap. But this has no effect.
*Is there a solution for this problem?*
I...
Delphi.NET loading Delphi.Win32 DriverHi,
What I'm trying to do is marshal an array of cardinal (or integer) back into managed memory from a win32 dll.
I know how to pass managed memory into a win32 dll
{code}
var aa : array of Integer;
Buffer : IntPtr;
begin
SetLength(aa,2);
aa[0] := 1;
aa[1] := 80;
if not Supports(ExtractFilePath(Application.ExeName)+'Win32_Library\SDK_Driver.Win32.io', TypeOf(IMyFunctions), MyFunctions) then Exit; //loads the driver into memory. MyFunctions contains the method names found in the SDK_Driver.
Buffer := Marshal.AllocHGlobal(2 * {Marshal.SystemDefaultC...
Ann: TsiLang Components Suite v7.1! (Multilanguage solution for Delphi and C++Builder with full FireMonkey support including Android and iOS)Hello,
We're glad to announce the release of TsiLang Components Suite 7.1!
Simple and powerful localization solution for software developers.
It's virtually impossible to find popular software that would not be
translated (localized) into multiple languages. In fact, even niche and
second-tier developers localize their products to increase international
sales. Unfortunately, the process of software localizations is both time
consuming and very expensive. Luckily, developers who use Delphi,
or C++Builder platform can use TsiLang Components Suite to localize
their software...
Ann: TsiLang Components Suite v7.1! (Multilanguage solution for Delphi and C++Builder with full FireMonkey support including Android and iOS)Hello,
We're glad to announce the release of TsiLang Components Suite 7.1!
Simple and powerful localization solution for software developers.
It's virtually impossible to find popular software that would not be
translated (localized) into multiple languages. In fact, even niche and
second-tier developers localize their products to increase international
sales. Unfortunately, the process of software localizations is both time
consuming and very expensive. Luckily, developers who use Delphi,
or C++Builder platform can use TsiLang Components Suite to localize
their software...