0

In my blackberry application, i want to disable cut,copy and paste option on edittext and other html contents. And also i need to disable to capturing screenshots of the screens in the application.

Thanks Mindus

mindus
  • 209
  • 2
  • 12

1 Answers1

1

Try this -

super(NO_VERTICAL_SCROLL | 262144); // 262144 NO_SYSTEM_MENU_ITEMS

This will hide the default menu items. Also refer the following link

Rince Thomas
  • 4,158
  • 5
  • 25
  • 44
  • i can able to hide the default menu item. But i want to disable cut/copy/paste option through buttons. for example the text from the exitfield i can able to select and copy through press button shift + scroll and alt + enter. I need to disable this option. – mindus Apr 16 '13 at 11:29
  • thats a device property. I dont think so its possible. – Rince Thomas Apr 16 '13 at 11:33