安卓开发中将文字复制到手机粘贴板

来源:互联网 发布:mac 10.12.6 编辑:程序博客网 时间:2024/05/16 23:39

在android studio 开发中实现将文字复制到粘贴板的功能:


public static void copyToClipboard(Context context, String text) {    ClipboardManager systemService = (ClipboardManager) context.getSystemService(Context.CLIPBOARD_SERVICE);    systemService.setPrimaryClip(ClipData.newPlainText("text", text));}

上述代码有参考其他人博客,仅供参考。

原创粉丝点击