Dealing with deprecated android.text.ClipboardManager

后端 未结 4 647
情歌与酒
情歌与酒 2021-02-07 13:09

android.text.ClipboardManager was deprecated since API level 11, and replaced with android.content.ClipboardManager (source).

How do I write c

4条回答
  •  醉话见心
    2021-02-07 13:59

    I ended up just using the old way (android.text.ClipboardManager and the code from this answer), along with a couple @SuppressWarnings("deprecation") annotations.

提交回复
热议问题