摘要: 第一种: String[] email = { "3802**92@qq.com" }; // 需要注意,email必须以数组形式传入 Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("message/rfc822"); // 设置邮件格式 ... 阅读全文
posted @ 2014-05-04 16:14 指鹿为驴 阅读(1020) 评论(0) 推荐(0) 编辑
摘要: ClipboardManager clipboard = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE); clipboard.setText("Text to copy"); clipboard.getText(); 阅读全文
posted @ 2014-05-04 16:03 指鹿为驴 阅读(155) 评论(0) 推荐(0) 编辑