Here you can find the source of copyText(Context context, String text)
@SuppressWarnings("deprecation") public static void copyText(Context context, String text)
//package com.java2s; import android.content.Context; public class Main { @SuppressWarnings("deprecation") public static void copyText(Context context, String text) { android.text.ClipboardManager cm = (android.text.ClipboardManager) context .getSystemService(Context.CLIPBOARD_SERVICE); cm.setText(text);// w ww .j a va 2s . co m } }