欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android 复制文本内容到系统剪贴板的最简单实例(分享)

程序员文章站 2023-11-13 12:48:46
这个例子很简单,直接上截图和代码。 布局文件activity_copy.xml代码如下:

这个例子很简单,直接上截图和代码。

Android 复制文本内容到系统剪贴板的最简单实例(分享)

布局文件activity_copy.xml代码如下:

<?xml version="1.0" encoding="utf-8"?>
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical" >

  <textview
    android:id="@+id/tvmsg"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="记者问一路人:“大妈,您觉得雾霾影响大吗?”路人:“能不大吗?首先你要看清楚,我是你大爷。"
    android:textsize="20sp" />

  <button
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_margintop="20dp"
    android:onclick="onclickcopy"
    android:text="复制上面的文本内容" />

</linearlayout>

后台copyactivity.java代码如下:

package chengyujia.demo.aty;

import android.content.context;
import android.os.bundle;
import android.text.clipboardmanager;
import android.view.view;
import android.widget.textview;
import android.widget.toast;
import chengyujia.demo.r;

public class copyactivity extends baseactivity {

  private textview tvmsg;

  @override
  protected void oncreate(bundle savedinstancestate) {
    super.oncreate(savedinstancestate);
    setcontentview(r.layout.activity_copy);
    tvmsg = (textview) findviewbyid(r.id.tvmsg);
  }

  public void onclickcopy(view v) {
    // 从api11开始android推荐使用android.content.clipboardmanager
    // 为了兼容低版本我们这里使用旧版的android.text.clipboardmanager,虽然提示deprecated,但不影响使用。
    clipboardmanager cm = (clipboardmanager) getsystemservice(context.clipboard_service);
    // 将文本内容放到系统剪贴板里。
    cm.settext(tvmsg.gettext());
    toast.maketext(this, "复制成功,可以发给朋友们了。", toast.length_long).show();
  }
}

核心代码就两句:

clipboardmanager cm = (clipboardmanager) getsystemservice(context.clipboard_service);

cm.settext(要复制的文本内容);

以上这篇android 复制文本内容到系统剪贴板的最简单实例(分享)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。