วิธีคัดลอกข้อความไปยังคลิปบอร์ดใน Android ได้อย่างไร


313

ใครช่วยบอกฉันถึงวิธีการคัดลอกข้อความที่ปรากฏในมุมมองข้อความเฉพาะไปยังคลิปบอร์ดเมื่อกดปุ่ม?

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.mainpage);
        textView = (TextView) findViewById(R.id.textview);
        copyText = (Button) findViewById(R.id.bCopy);
        copyText.setOnClickListener(new View.OnClickListener() {


            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub

                ClipboardManager clipboard = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE);
                String getstring = textView.getText().toString();

                //Help to continue :)

            }
        });
    }

}

ฉันต้องการคัดลอกข้อความใน TextView textView ไปยังคลิปบอร์ดเมื่อbCopyกดปุ่ม



stackoverflow.com/q/48791271/9274175โปรดตอบคำถามนี้ใน coppy
Yash Kale

คำตอบ:


590

ใช้ClipboardManager

 ClipboardManager clipboard = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE); 
 ClipData clip = ClipData.newPlainText(label, text);
 clipboard.setPrimaryClip(clip);

ให้แน่ใจว่าคุณได้นำเข้าandroid.content.ClipboardManagerและ android.text.ClipboardManagerNOT ยุคหลังเลิกใช้แล้ว ตรวจสอบลิงค์นี้สำหรับข้อมูลเพิ่มเติม


3
สิ่งนี้มีไว้สำหรับ API11 + เท่านั้นไม่สามารถใช้งานได้กับ GB และด้านล่าง
Javier

48
"ฉลาก" ใช้ทำอะไร
นักพัฒนา android

19
@androiddeveloper คำอธิบายของพารามิเตอร์ "label": stackoverflow.com/questions/33207809/…
smg

3
@smg ดังนั้นสำหรับนักพัฒนาซอฟต์แวร์มากกว่านี้? แต่ทำไมมันถึงบอกว่ามันแสดงให้ผู้ใช้เห็น?
นักพัฒนา android

7
ใน androidx มันจะกลายเป็นจริงClipboardManager clipboard = getSystemService(getContext(), ClipboardManager.class);
HoratioCain

72

นี่คือวิธีการคัดลอกข้อความไปยังคลิปบอร์ด:

private void setClipboard(Context context, String text) {
  if(android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.HONEYCOMB) {
    android.text.ClipboardManager clipboard = (android.text.ClipboardManager) context.getSystemService(Context.CLIPBOARD_SERVICE);
    clipboard.setText(text);
  } else {
    android.content.ClipboardManager clipboard = (android.content.ClipboardManager) context.getSystemService(Context.CLIPBOARD_SERVICE);
    android.content.ClipData clip = android.content.ClipData.newPlainText("Copied Text", text);
    clipboard.setPrimaryClip(clip);
  }
}

วิธีนี้ใช้กับอุปกรณ์ Android ทั้งหมด


2
ฉันไม่เข้าใจความหมายของคำว่า "บริบท" คุณสามารถเพิ่มตัวอย่างวิธีเรียกวิธีนั้นได้อย่างถูกต้องหรือไม่? ขอบคุณ
E_Blue

1
นอกจากนี้ดูเหมือนว่าจะไม่ใช้ค่าของ "บริบท" ทำไมมันต้องผ่านเป็นพารามิเตอร์?
E_Blue

คนที่แต่งตัวประหลาดเฮ้บริบทจำเป็นต้องมีในส่วนที่จะเรียก getSystemService
vuhung3990

@E_Blue context.getSystemService (Context.CLIPBOARD_SERVICE) ??? จริงๆ???
androidStud

1
@E_Blue ดูเหมือนว่าคุณเป็นนักพัฒนาซอฟต์แวร์ไร้เดียงสาที่กำลังถามเกี่ยวกับบริบท นั่นก็ไม่ใช่ปัญหา แต่เพียงคำนึงถึงน้ำเสียงของคุณและทำการศึกษา / วิจัยเกี่ยวกับสิ่งต่าง ๆ เช่นกัน
androidStud

57

เมื่อวานฉันทำชั้นนี้ รับได้สำหรับทุกระดับ API

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;

import android.annotation.SuppressLint;
import android.content.ClipData;
import android.content.ClipboardManager;
import android.content.ContentResolver;
import android.content.Context;
import android.content.Intent;
import android.content.res.AssetFileDescriptor;
import android.net.Uri;
import android.util.Log;
import de.lochmann.nsafirewall.R;

public class MyClipboardManager {

    @SuppressLint("NewApi")
    @SuppressWarnings("deprecation")
    public boolean copyToClipboard(Context context, String text) {
        try {
            int sdk = android.os.Build.VERSION.SDK_INT;
            if (sdk < android.os.Build.VERSION_CODES.HONEYCOMB) {
                android.text.ClipboardManager clipboard = (android.text.ClipboardManager) context
                        .getSystemService(context.CLIPBOARD_SERVICE);
                clipboard.setText(text);
            } else {
                android.content.ClipboardManager clipboard = (android.content.ClipboardManager) context
                        .getSystemService(context.CLIPBOARD_SERVICE);
                android.content.ClipData clip = android.content.ClipData
                        .newPlainText(
                                context.getResources().getString(
                                        R.string.message), text);
                clipboard.setPrimaryClip(clip);
            }
            return true;
        } catch (Exception e) {
            return false;
        }
    }

    @SuppressLint("NewApi")
    public String readFromClipboard(Context context) {
        int sdk = android.os.Build.VERSION.SDK_INT;
        if (sdk < android.os.Build.VERSION_CODES.HONEYCOMB) {
            android.text.ClipboardManager clipboard = (android.text.ClipboardManager) context
                    .getSystemService(context.CLIPBOARD_SERVICE);
            return clipboard.getText().toString();
        } else {
            ClipboardManager clipboard = (ClipboardManager) context
                    .getSystemService(Context.CLIPBOARD_SERVICE);

            // Gets a content resolver instance
            ContentResolver cr = context.getContentResolver();

            // Gets the clipboard data from the clipboard
            ClipData clip = clipboard.getPrimaryClip();
            if (clip != null) {

                String text = null;
                String title = null;

                // Gets the first item from the clipboard data
                ClipData.Item item = clip.getItemAt(0);

                // Tries to get the item's contents as a URI pointing to a note
                Uri uri = item.getUri();

                // If the contents of the clipboard wasn't a reference to a
                // note, then
                // this converts whatever it is to text.
                if (text == null) {
                    text = coerceToText(context, item).toString();
                }

                return text;
            }
        }
        return "";
    }

    @SuppressLint("NewApi")
    public CharSequence coerceToText(Context context, ClipData.Item item) {
        // If this Item has an explicit textual value, simply return that.
        CharSequence text = item.getText();
        if (text != null) {
            return text;
        }

        // If this Item has a URI value, try using that.
        Uri uri = item.getUri();
        if (uri != null) {

            // First see if the URI can be opened as a plain text stream
            // (of any sub-type). If so, this is the best textual
            // representation for it.
            FileInputStream stream = null;
            try {
                // Ask for a stream of the desired type.
                AssetFileDescriptor descr = context.getContentResolver()
                        .openTypedAssetFileDescriptor(uri, "text/*", null);
                stream = descr.createInputStream();
                InputStreamReader reader = new InputStreamReader(stream,
                        "UTF-8");

                // Got it... copy the stream into a local string and return it.
                StringBuilder builder = new StringBuilder(128);
                char[] buffer = new char[8192];
                int len;
                while ((len = reader.read(buffer)) > 0) {
                    builder.append(buffer, 0, len);
                }
                return builder.toString();

            } catch (FileNotFoundException e) {
                // Unable to open content URI as text... not really an
                // error, just something to ignore.

            } catch (IOException e) {
                // Something bad has happened.
                Log.w("ClippedData", "Failure loading text", e);
                return e.toString();

            } finally {
                if (stream != null) {
                    try {
                        stream.close();
                    } catch (IOException e) {
                    }
                }
            }

            // If we couldn't open the URI as a stream, then the URI itself
            // probably serves fairly well as a textual representation.
            return uri.toString();
        }

        // Finally, if all we have is an Intent, then we can just turn that
        // into text. Not the most user-friendly thing, but it's something.
        Intent intent = item.getIntent();
        if (intent != null) {
            return intent.toUri(Intent.URI_INTENT_SCHEME);
        }

        // Shouldn't get here, but just in case...
        return "";
    }

}

คุณสามารถเพิ่มคำสั่งการนำเข้าที่จำเป็นเพื่อให้คลาสนี้ทำงานได้หรือไม่
merlin2011

@ merlin2011 ทำแล้วคิดว่าฉันลืมวิธี coerceToText (... ) เพื่อสิ่งนั้น
AS

"coerceToText" ทำอะไร นอกจากนี้เป็นไปได้ไหมที่จะคัดลอก / วางข้อมูลประเภทอื่นไปยังคลิปบอร์ด (ตัวอย่างเช่นบิตแมป)?
นักพัฒนา android

1
@ ทำไมคุณเขียนวิธี corceToText ด้วยตัวคุณเอง? ! มันพร้อมใช้งานแล้วกับ api ดูdeveloper.android.com/reference/android/content/…
Hardik

แต่ฉันคิดว่ามีเวลาที่นักพัฒนาจะหยุดสนับสนุนสิ่งต่าง ๆ ก่อนหน้าเกี่ยวกับ API17 เหลือยูนิตประเภทผู้สูงอายุไม่มากและพวกเขาไม่มีแนวโน้มที่จะดาวน์โหลดแอพใหม่ ๆ ? ตัวอย่างเช่นฉันใช้หน่วยพี่เพื่อนำทางในเรือใบของฉันและทุกอย่างก็ถูกเช็ด ฉันไม่สนใจที่จะโยนหน่วยเหล่านี้ลงบนกระดานโดยไม่ได้ตั้งใจเหรอ?
Jan Bergström

23

ในฐานะที่เป็นส่วนขยาย kotlin ที่มีประโยชน์:

fun Context.copyToClipboard(text: CharSequence){
    val clipboard = getSystemService(Context.CLIPBOARD_SERVICE) as ClipboardManager
    val clip = ClipData.newPlainText("label",text)
    clipboard.primaryClip = clip
}

ปรับปรุง:

หากคุณใช้ ContextCompat คุณควรใช้:

ContextCompat.getSystemService(this, ClipboardManager::class.java)

1
API ได้เปลี่ยนเป็น clipboardManager = getSystemService (บริบท, ClipboardManager :: class.java)
ต่อ Christian Henden

จริง ๆ แล้วมันเปลี่ยนไปcontext.getSystemService(ClipboardManager::class.java)คุณกำลังชี้ไปที่ลายเซ็น ContextCompat ใช่ไหม? ขอบคุณสำหรับคำติชม
crgarridos

13

เพียงแค่ใช้สิ่งนี้ มันทำงานได้เฉพาะกับ Android API> = 11 ก่อนหน้านั้นคุณจะต้องใช้ ClipData

ClipboardManager _clipboard = (ClipboardManager) _activity.getSystemService(Context.CLIPBOARD_SERVICE);
_clipboard.setText(YOUR TEXT);

หวังว่ามันจะช่วยคุณ :)

[UPDATE 3/19/2015 ] เช่นเดียวกับUjjwal Singhกล่าวว่าวิธีsetTextนี้เลิกใช้แล้วในตอนนี้คุณควรใช้เช่นเดียวกับเอกสารแนะนำให้ใช้setPrimaryClip (clipData)


1
นั่นคือชื่อของตัวแปรของฉัน หากคุณอยู่ในกิจกรรมของคุณให้ใช้ (ClipboardManager) this.getSystemService(Context.CLIPBOARD_SERVICE); _clipboard.setText(YOUR TEXT);
Ektos974

1
เลิกใช้แล้ว - อย่าsetTextใช้ClipData+setPrimaryClip
Ujjwal Singh เมื่อ

1
สำหรับฉันมันยังแสดงข้อผิดพลาดขณะใช้ setPrimaryClip
Praneeth

11

สิ่งนี้สามารถทำได้ใน Kotlin ดังนี้:

var clipboard = getSystemService(Context.CLIPBOARD_SERVICE) as ClipboardManager
var clip = ClipData.newPlainText("label", file.readText())
clipboard.primaryClip = clip

file.readText()สตริงอินพุตของคุณอยู่ที่ไหน


7

ใช้รหัสนี้

   private ClipboardManager myClipboard;
   private ClipData myClip;
   TextView textView;
   Button copyText;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.mainpage);
    textView = (TextView) findViewById(R.id.textview);
    copyText = (Button) findViewById(R.id.bCopy);
    myClipboard = (ClipboardManager)getSystemService(CLIPBOARD_SERVICE);

    copyText.setOnClickListener(new View.OnClickListener() {


        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub


           String text = textView.getText().toString();
           myClip = ClipData.newPlainText("text", text);
           myClipboard.setPrimaryClip(myClip);
           Toast.makeText(getApplicationContext(), "Text Copied", 
           Toast.LENGTH_SHORT).show(); 
        }
    });
}

ขอบคุณมากมันใช้งานง่ายมาก
iamkdblue

7

ใช้ฟังก์ชั่นนี้เพื่อคัดลอกไปยังคลิปบอร์ด

public void copyToClipboard(String copyText) {
    int sdk = android.os.Build.VERSION.SDK_INT;
    if (sdk < android.os.Build.VERSION_CODES.HONEYCOMB) {
        android.text.ClipboardManager clipboard = (android.text.ClipboardManager)
                getSystemService(Context.CLIPBOARD_SERVICE);
        clipboard.setText(copyText);
    } else {
        android.content.ClipboardManager clipboard = (android.content.ClipboardManager)
                getSystemService(Context.CLIPBOARD_SERVICE);
        android.content.ClipData clip = android.content.ClipData
                .newPlainText("Your OTP", copyText);
        clipboard.setPrimaryClip(clip);
    }
    Toast toast = Toast.makeText(getApplicationContext(),
            "Your OTP is copied", Toast.LENGTH_SHORT);
    toast.setGravity(Gravity.BOTTOM | Gravity.RIGHT, 50, 50);
    toast.show();
    //displayAlert("Your OTP is copied");
}

6
@SuppressLint({ "NewApi", "NewApi", "NewApi", "NewApi" })
@SuppressWarnings("deprecation")
@TargetApi(11)
public void onClickCopy(View v) {   // User-defined onClick Listener
    int sdk_Version = android.os.Build.VERSION.SDK_INT;
    if(sdk_Version < android.os.Build.VERSION_CODES.HONEYCOMB) {
        android.text.ClipboardManager clipboard = (android.text.ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE);
        clipboard.setText(textView.getText().toString());   // Assuming that you are copying the text from a TextView
        Toast.makeText(getApplicationContext(), "Copied to Clipboard!", Toast.LENGTH_SHORT).show();
    }
    else { 
        android.content.ClipboardManager clipboard = (android.content.ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE); 
        android.content.ClipData clip = android.content.ClipData.newPlainText("Text Label", textView.getText().toString());
        clipboard.setPrimaryClip(clip);
        Toast.makeText(getApplicationContext(), "Copied to Clipboard!", Toast.LENGTH_SHORT).show();
    }   
}

2

int sdk = android.os.Build.VERSION.SDK_INT;

    if (sdk < android.os.Build.VERSION_CODES.HONEYCOMB) {
        android.text.ClipboardManager clipboard = (android.text.ClipboardManager) DetailView.this
                .getSystemService(Context.CLIPBOARD_SERVICE);
        clipboard.setText("" + yourMessage.toString());
        Toast.makeText(AppCstVar.getAppContext(),
                "" + getResources().getString(R.string.txt_copiedtoclipboard),
                Toast.LENGTH_SHORT).show();
    } else {
        android.content.ClipboardManager clipboard = (android.content.ClipboardManager) DetailView.this
                .getSystemService(Context.CLIPBOARD_SERVICE);
        android.content.ClipData clip = android.content.ClipData
                .newPlainText("message", "" + yourMessage.toString());
        clipboard.setPrimaryClip(clip);
        Toast.makeText(AppCstVar.getAppContext(),
                "" + getResources().getString(R.string.txt_copiedtoclipboard),
                Toast.LENGTH_SHORT).show();
    }

2

ใช้วิธีนี้:

 ClipboardManager clipboard = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE); 
 ClipData clip = ClipData.newPlainText(label, text);
 clipboard.setPrimaryClip(clip);

ที่ setPrimaryClip เรายังสามารถใช้วิธีการต่อไปนี้:

void    clearPrimaryClip()

ล้างคลิปหลักปัจจุบันใด ๆ บนคลิปบอร์ด

ClipData    getPrimaryClip()

ส่งคืนคลิปหลักปัจจุบันบนคลิปบอร์ด

ClipDescription getPrimaryClipDescription()

ส่งคืนคำอธิบายของคลิปหลักปัจจุบันบนคลิปบอร์ด แต่ไม่ใช่สำเนาของข้อมูล

CharSequence    getText()

วิธีนี้เลิกใช้แล้ว ใช้ getPrimaryClip () แทน วิธีนี้จะดึงคลิปหลักและพยายามบังคับให้เป็นสตริง

boolean hasPrimaryClip()

ผลตอบแทนจริงถ้าขณะนี้มีคลิปหลักในคลิปบอร์ด


1
    String stringYouExtracted = referraltxt.getText().toString();
    android.content.ClipboardManager clipboard = (android.content.ClipboardManager) getActivity().getSystemService(Context.CLIPBOARD_SERVICE);
    android.content.ClipData clip = android.content.ClipData.newPlainText("Copied Text", stringYouExtracted);

clipboard.setPrimaryClip(clip);
        Toast.makeText(getActivity(), "Copy coupon code copied to clickboard!", Toast.LENGTH_SHORT).show();

0

ลองรหัสต่อไปนี้ มันจะรองรับ API ล่าสุด:

ClipboardManager clipboard = (ClipboardManager) context.getSystemService(Context.CLIPBOARD_SERVICE);
                        if (clipboard.hasPrimaryClip()) {
                            android.content.ClipDescription description = clipboard.getPrimaryClipDescription();
                            android.content.ClipData data = clipboard.getPrimaryClip();
                            if (data != null && description != null && description.hasMimeType(ClipDescription.MIMETYPE_TEXT_PLAIN))
                            {
                                String url= (String) clipboard.getText();
                                searchText.setText(url);
                                System.out.println("data="+data+"description="+description+"url="+url);
                            }}

0

วิธีใช้ Kotlin เพื่อแนบคลิกเพื่อคัดลอกข้อความบน TextView

วางวิธีนี้ที่ใดที่หนึ่งในชั้นเรียน Util วิธีนี้แนบ listener การคลิกบน textview เพื่อคัดลอกเนื้อหาของ textView ไปยัง clipText เมื่อคลิก textView นั้น

/**
 * Param:  cliplabel, textview, context
 */
fun attachClickToCopyText(textView: TextView?, clipLabel: String, context: Context?) {
    if (textView != null && null != context) {
        textView.setOnClickListener {
            val clipboard = context.getSystemService(Context.CLIPBOARD_SERVICE) as ClipboardManager
            val clip = ClipData.newPlainText(clipLabel, textView!!.text)
            clipboard.primaryClip = clip
            Snackbar.make(textView,
                    "Copied $clipLabel", Snackbar.LENGTH_LONG).show()
        }
    }

}

0

คุณสามารถดำเนินการคัดลอกไปยังฟังก์ชั่นคลิปบอร์ดเมื่อเหตุการณ์ปุ่ม onclick นี้ ดังนั้นให้วางโค้ดบรรทัดเหล่านี้ไว้ในปุ่มของคุณบน

android.content.ClipboardManager clipboardManager = (android.content.ClipboardManager)getSystemService(Context.CLIPBOARD_SERVICE);
android.content.ClipData clipData = android.content.ClipData.newPlainText("Text Label", ViewPass.getText().toString());
clipboardManager.setPrimaryClip(clipData);
Toast.makeText(getApplicationContext(),"Copied from Clipboard!",Toast.LENGTH_SHORT).show();

0

เพียงแค่เขียนรหัสนี้:

clipboard.setText(getstring);

clipboardคุณลืมที่จะเริ่มต้น setTextแต่ขอบคุณสำหรับ val clip = ClipData.newPlainText(null, text) clipboard.setPrimaryClip(clip)มันจะเลิกเพื่อให้การใช้งาน
CoolMind

-1

สำหรับ Kotlin

 ClipboardManager clipboard = (ClipboardManager)getSystemService(Context.CLIPBOARD_SERVICE); 
 ClipData clip = ClipData.newPlainText(label, text);
 clipboard.setPrimaryClip(clip);
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.