[android-developers] Re: How to use the new clipboard function?

2011-03-31 Thread A. Elk
Your statement is imprecise. android.*text*.ClipboardManager is being deprecated, in favor of android.* content*.ClipboardManager. The javadoc for android.text.ClipboardManager points to the new API. Nothing in the documentation suggests that the old way of copying and pasting text is any

[android-developers] Re: How to use the new clipboard function?

2011-03-30 Thread Dominik Erbsland
okay found out the problem: with honeycomb ClipboardManager cm=(ClipboardManager)getSystemService(CLIPBOARD_SERVICE); is gonna be deprecated. with android 2.3.3 it's still working! JFYI On 3月29日, 午後11:23, Mark Murphy mmur...@commonsware.com wrote: Am Di, 29. März 2011 um 5:10

Re: [android-developers] Re: How to use the new clipboard function?

2011-03-30 Thread Mark Murphy
2011/3/30 Dominik Erbsland derbsl...@gmail.com: okay found out the problem: with honeycomb                ClipboardManager cm=(ClipboardManager)getSystemService(CLIPBOARD_SERVICE); is gonna be deprecated. Where do you see this documented? -- Mark Murphy (a Commons Guy)