Jump to content

stacker_liew

Members
  • Content Count

    106
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by stacker_liew


  1. Not compile due to [DCC Fatal Error] F1026 File not found: 'C:\Users\Public\Documents\Embarcadero\Studio\22.0\CatalogRepository\AndroidNDK-21-22.0.45591.0253\android-ndk-r21\toolchains\aarch64-linux-android-4.9\prebuilt\windows-x86_64\aarch64-linux-android\bin\ld.exe'

    How to resolve this?


  2. On 1/2/2023 at 2:32 AM, programmerdelphi2k said:

    here:

    •  if (Key = vkHardwareBack) or (Key = vkEscape) then
      • MSWindows10 - working   
      • Android 11 64bit - working
    •   ShowMessage(ActiveControl.Name);
    •  if not((FService <> nil) and (TVirtualKeyboardState.Visible in FService.VirtualKeyboardState)) then
              begin
                Key := 0;
                Memo1.Lines.Add('TVirtualKeyboardState.Visible in FService.VirtualKeyboardState');
                //...
    • TStandFrame downloaded from github : https://github.com/andrea-magni/TFrameStand

     

    NOTE: when none Frame is showed and you try "drag to left" again.... (on main screen)... I receive a exception:  External Exception E8. Maybe you need verify if you are in main screen in your KeyPress event..

            if TFrameStandDemoFrameStand.FrameInfos.Count > 0 then
            begin
              if TFrameStandDemoFrame.IsVisible then
              begin
                TFrameStandDemoFrameStand.HideAndCloseAll([TTFrameStandDemoFrame]);
                Exit;
              end;
            end;

    Change the source to this will fix the av.

×