I am trying to get the text copied to the clipboard using the following listener:
import android.content.ClipboardManager.OnPrimaryClipChangedListener;
import com.orhanobut.logger.Logger;
public class ClipboardListener implements OnPrimaryClipChangedListener
{
public void onPrimaryClipChanged()
{
Logger.d("Clipped");
}
}
The listener is initialized as follows:
ClipboardManager clipBoard = (ClipboardManager)getSystemService(CLIPBOARD_SERVICE);
clipBoard.addPrimaryClipChangedListener( new ClipboardListener());
After copying the text to the clipboard onPrimaryClipChanged, but I do not know how to get the copied text in this method using ClipboardManager. getPrimaryClip () , because this method is not available from the context and is not passed in the parameter onPrimaryClipChanged.
source
share