Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to achieve the effect of copying nicknames in Android

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)05/31 Report--

This article introduces the knowledge of "how to achieve the effect of copying nicknames in Android". Many people will encounter this dilemma in the operation of actual cases, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Solution:

PopupList.java code package is relatively perfect, using pure java code to achieve view effect, do not need to use pictures, xml resource files, if introduced, only need copy PopupList.java code to the project project.

All that's left is to call. Here does not analyze the source code, the source code is relatively simple, only talk about how to use.

PopupList popupList = new PopupList (this); List popupMenuItemList = new ArrayList (Arrays.asList ("copy QQ number"); popupList.bind (tvQQNum, popupMenuItemList, new PopupList.PopupListListener () {@ Override public boolean showPopupList (View adapterView, View contextView, int contextPosition) {return true;} @ Override public void onPopupListClick (View contextView, int contextPosition, int position) {ClipboardManager cm = (ClipboardManager) getSystemService (Context.CLIPBOARD_SERVICE); ClipData clipData = ClipData.newPlainText ("Label", "10001"); cm.setPrimaryClip (clipData) }}); PopupList popupList = new PopupList (this); List popupMenuItemList = new ArrayList (Arrays.asList ("copy"); popupList.bind (tvUserName, popupMenuItemList, new PopupList.PopupListListener () {@ Override public boolean showPopupList (View adapterView, View contextView, int contextPosition) {return true;} @ Override public void onPopupListClick (View contextView, int contextPosition, int position) {ClipboardManager cm = (ClipboardManager) getSystemService (Context.CLIPBOARD_SERVICE); ClipData clipData = ClipData.newPlainText ("Label", "Tiantian"); cm.setPrimaryClip (clipData) That's all for "how to copy nicknames in Android". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report