Copying data giving using getPrimaryClip() giving { text/plain {NULL} }

戏子无情 提交于 2019-11-29 15:30:25

The reason of your problem is unknown. since it works on a device which I tested on (S6 5.0). You may want to look at the implementation of deprecated getText() method:

public CharSequence getText() {
    ClipData clip = getPrimaryClip();
    if (clip != null && clip.getItemCount() > 0) {
        return clip.getItemAt(0).coerceToText(mContext);
    }
    return null;
}

In order to obtain the text It uses the method coerceToText() . according to description of this method:

     * Turn this item into text, regardless of the type of data it
     * actually contains.

Therefore , I presume the deprecation of method getText() is due to a performance concern or something else.

Anyway. Since method getText() uses API which is not deprecated, as a workaround you can use some part of the source of this method(specifically, method coerceToText() ) if calling recommended API returns null:

ClipboardManager mclipboard =(ClipboardManager) getSystemService(CLIPBOARD_SERVICE);
boolean isTextPlain = mclipboard.getPrimaryClip().getDescription().hasMimeType(ClipDescription.MIMETYPE_TEXT_PLAIN);
    CharSequence text = null;
if (isTextPlain){
    ClipData clipData = mclipboard.getPrimaryClip();
    ClipData.Item item = clipData.getItemAt(0);
    if (  item!= null ){
        text = item.getText();
        if (text == null){
            // taken from source of clipData.getText() method
            text =  item.coerceToText(this);
        }
    }
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!