Java tutorial
//package com.java2s; //License from project: Apache License import android.content.ClipboardManager; import android.content.Context; public class Main { public static String paste(Context context) { ClipboardManager cmb = (ClipboardManager) context.getSystemService(Context.CLIPBOARD_SERVICE); return cmb.getText().toString(); } }