程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> 修正 Memo 設定為 ReadOnly 後, 無法有複製的功能

修正 Memo 設定為 ReadOnly 後, 無法有複製的功能

編輯:Delphi

問題:當 Memo 設定為 ReadOnly = True 後, 選取一段文字後,無法有複製的功能。

適用:XE6 Android 系統(目前 iOS 還找不到方法)

修正方法:

請將源碼 FMX.Platform.Android.pas 復制到自己的工程目錄裡,再進行修改。

找到 TWindowManager.ShowContextMenu 函數,刪除一行,如下:

procedure TWindowManager.ShowContextMenu(const ItemsToShow: TContextMenuItems);
begin

  ..... 省略 ......

    PlatformAndroid.SynchronizeOnUIThread(
      procedure
      begin
        if FCopyButton <> nil then
          FContextButtonsLayout.addView(FCopyButton);
        if FCutButton <> nil then
          FContextButtonsLayout.addView(FCutButton);
        if FPasteButton <> nil then
          FContextButtonsLayout.addView(FPasteButton);
//  if TVirtualKeyboardState.Visible in VirtualKeyboardAndroid.VirtualKeyboardState then // 刪除這一行
          DoShowContextMenu;
      end);
  end;
end;

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved