亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android應用中怎么將文本內容復制到系統剪貼板

發布時間:2020-12-03 16:29:58 來源:億速云 閱讀:188 作者:Leah 欄目:移動開發

Android應用中怎么將文本內容復制到系統剪貼板?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

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

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<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應用中怎么將文本內容復制到系統剪貼板的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

沙洋县| 青州市| 永吉县| 旬邑县| 民乐县| 伽师县| 金川县| 鄂州市| 抚远县| 准格尔旗| 旬邑县| 汝南县| 顺昌县| 酒泉市| 临武县| 永济市| 苍梧县| 永寿县| 阿尔山市| 渝北区| 林甸县| 枣阳市| 屏山县| 屯留县| 博爱县| 美姑县| 镶黄旗| 高州市| 马山县| 肥东县| 青冈县| 奈曼旗| 丁青县| 开江县| 肥城市| 建平县| 阿荣旗| 忻城县| 扎赉特旗| 巴南区| 镇宁|