首页 > 代码库 > 修正 Memo 設定為 ReadOnly 後, 無法有複製的功能
修正 Memo 設定為 ReadOnly 後, 無法有複製的功能
问题:当 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;
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。