摘要: android2.1之后版本方法一:ClipboardManager clip = (ClipboardManager)getSystemService(Context.CLIPBOARD_SERVICE);clip.getText(); // 粘贴clip.setText(str); // 复制方法二:ClipboardManager c= (ClipboardManager)getSystemService(CLIPBOARD_SERVICE);c.setText(smsContent.getText());设置Clipboard 的内容c.getText(smsContent.getTe 阅读全文
posted @ 2012-12-13 11:00 Alex.Net 阅读(143) 评论(0) 推荐(0) 编辑