Android 提供了一个强大的基于剪贴板的框架,用于实现复制和粘贴功能。它支持简单和复杂的数据类型,包括文本字符串、复杂数据结构、文本和二进制流数据以及应用资源。简单文本数据直接存储在剪贴板中,而复杂数据则存储为一个引用,由粘贴应用通过内容提供程序解析。复制和粘贴可以在应用内部和实现了该框架的应用之间进行。
由于框架的一部分使用了内容提供程序,本文档假设您对 Android 内容提供程序 API 有一定的了解,该 API 在内容提供程序中进行了介绍。
用户期望在复制内容到剪贴板时获得反馈,因此除了支持复制和粘贴的框架外,Android 在 Android 13(API 级别 33)及更高版本中,在复制时会向用户显示默认界面。由于此功能,存在重复通知的风险。您可以在避免重复通知部分了解有关此边缘情况的更多信息。

在 Android 12L(API 级别 32)及更低版本中,当复制时,请手动向用户提供反馈。请参阅本文档中对此的建议。
剪贴板框架
使用剪贴板框架时,您需要将数据放入剪辑对象中,然后将剪辑对象放入系统级剪贴板。剪辑对象可以采用以下三种形式之一
- 文本
- 一个文本字符串。将字符串直接放入剪辑对象中,然后将其放入剪贴板。要粘贴字符串,从剪贴板获取剪辑对象,然后将字符串复制到您的应用存储中。
- URI
- 一个
Uri
对象,表示任何形式的 URI。这主要用于从内容提供程序复制复杂数据。要复制数据,将一个Uri
对象放入剪辑对象中,然后将剪辑对象放入剪贴板。要粘贴数据,获取剪辑对象,获取Uri
对象,将其解析为数据源(例如内容提供程序),然后将数据从源复制到您的应用存储中。 - Intent
- 一个
Intent
。这支持复制应用快捷方式。要复制数据,创建一个Intent
,将其放入剪辑对象中,然后将剪辑对象放入剪贴板。要粘贴数据,获取剪辑对象,然后将Intent
对象复制到您的应用内存区域。
剪贴板一次只能容纳一个剪辑对象。当应用将剪辑对象放入剪贴板时,之前的剪辑对象会消失。
如果您想让用户将数据粘贴到您的应用中,您不必处理所有类型的数据。在向用户提供粘贴选项之前,您可以检查剪贴板上的数据。除了具有某种数据形式之外,剪辑对象还包含元数据,该元数据会告知您有哪些可用的 MIME 类型。这些元数据可帮助您决定您的应用是否可以对剪贴板数据执行有用的操作。例如,如果您有一个主要处理文本的应用,您可能希望忽略包含 URI 或 Intent 的剪辑对象。
您可能还希望无论剪贴板上的数据形式如何,都允许用户粘贴文本。为此,可以将剪贴板数据强制转换为文本表示形式,然后粘贴此文本。这在将剪贴板数据强制转换为文本部分进行了介绍。
剪贴板类
本部分介绍剪贴板框架使用的类。
ClipboardManager
Android 系统剪贴板由全局 ClipboardManager
类表示。请勿直接实例化此类。而是通过调用 getSystemService(CLIPBOARD_SERVICE)
获取对其的引用。
ClipData、ClipData.Item 和 ClipDescription
要将数据添加到剪贴板,创建一个 ClipData
对象,其中包含数据的描述和数据本身。剪贴板一次只保存一个 ClipData
。一个 ClipData
包含一个 ClipDescription
对象和一个或多个 ClipData.Item
对象。
一个 ClipDescription
对象包含有关剪辑的元数据。特别是,它包含剪辑数据可用 MIME 类型的数组。此外,在 Android 12(API 级别 31)及更高版本中,元数据包含有关对象是否包含样式化文本以及对象中文本类型的信息。当您将剪辑放入剪贴板时,此信息对粘贴应用可用,它们可以检查是否可以处理剪辑数据。
一个 ClipData.Item
对象包含文本、URI 或 Intent 数据
- 文本
- 一个
CharSequence
。 - URI
- 一个
Uri
。这通常包含一个内容提供程序 URI,尽管允许任何 URI。提供数据的应用将 URI 放入剪贴板。想要粘贴数据的应用从剪贴板获取 URI,并使用它访问内容提供程序或其他数据源以检索数据。 - Intent
- 一个
Intent
。此数据类型允许您将应用快捷方式复制到剪贴板。然后用户可以将快捷方式粘贴到他们的应用中以供以后使用。
您可以向剪辑添加多个 ClipData.Item
对象。这允许用户将多个选择作为单个剪辑进行复制和粘贴。例如,如果您有一个列表微件允许用户一次选择多个项目,您可以一次将所有项目复制到剪贴板。为此,为每个列表项创建一个单独的 ClipData.Item
,然后将这些 ClipData.Item
对象添加到 ClipData
对象。
ClipData 便捷方法
ClipData
类提供了静态便捷方法,用于创建一个包含单个 ClipData.Item
对象和简单 ClipDescription
对象的 ClipData
对象
-
newPlainText(label, text)
- 返回一个
ClipData
对象,其单个ClipData.Item
对象包含一个文本字符串。ClipDescription
对象的标签设置为label
。ClipDescription
中的单个 MIME 类型为MIMETYPE_TEXT_PLAIN
。使用
newPlainText()
从文本字符串创建剪辑。 -
newUri(resolver, label, URI)
- 返回一个
ClipData
对象,其单个ClipData.Item
对象包含一个 URI。ClipDescription
对象的标签设置为label
。如果 URI 是一个 content URI(即如果Uri.getScheme()
返回content:
),则该方法使用resolver
中提供的ContentResolver
对象从内容提供程序检索可用的 MIME 类型,然后将其存储在ClipDescription
中。对于不是content:
URI 的 URI,该方法将 MIME 类型设置为MIMETYPE_TEXT_URILIST
。使用
newUri()
从 URI 创建剪辑,特别是content:
URI。 -
newIntent(label, intent)
- 返回一个
ClipData
对象,其单个ClipData.Item
对象包含一个Intent
。ClipDescription
对象的标签设置为label
。MIME 类型设置为MIMETYPE_TEXT_INTENT
。使用
newIntent()
从Intent
对象创建剪辑。
将剪贴板数据强制转换为文本
即使您的应用只处理文本,您也可以通过 ClipData.Item.coerceToText()
方法将非文本数据从剪贴板中转换并复制。
此方法将 ClipData.Item
中的数据转换为文本并返回 CharSequence
。ClipData.Item.coerceToText()
返回的值取决于 ClipData.Item
中数据的形式
- 文本
- 如果
ClipData.Item
是文本(即如果getText()
不为 null),则 coerceToText() 返回文本。 - URI
- 如果
ClipData.Item
是一个 URI(即如果getUri()
不为 null),则coerceToText()
尝试将其用作 content URI。- 如果 URI 是一个 content URI 且提供程序可以返回文本流,则
coerceToText()
返回文本流。 - 如果 URI 是一个 content URI 但提供程序不提供文本流,则
coerceToText()
返回 URI 的表示形式。该表示形式与Uri.toString()
返回的相同。 - 如果 URI 不是 content URI,则
coerceToText()
返回 URI 的表示形式。该表示形式与Uri.toString()
返回的相同。
- 如果 URI 是一个 content URI 且提供程序可以返回文本流,则
- Intent
- 如果
ClipData.Item
是一个Intent
(即如果getIntent()
不为 null),则coerceToText()
将其转换为 Intent URI 并返回。该表示形式与Intent.toUri(URI_INTENT_SCHEME)
返回的相同。
剪贴板框架概括如图 2 所示。要复制数据,应用将 ClipData
对象放入 ClipboardManager
全局剪贴板。该 ClipData
包含一个或多个 ClipData.Item
对象和一个 ClipDescription
对象。要粘贴数据,应用获取 ClipData
,从 ClipDescription
获取其 MIME 类型,并从 ClipData.Item
或 ClipData.Item
引用的内容提供程序获取数据。

复制到剪贴板
要将数据复制到剪贴板,请获取全局 ClipboardManager
对象的句柄,创建一个 ClipData
对象,并向其添加一个 ClipDescription
和一个或多个 ClipData.Item
对象。然后,将完成的 ClipData
对象添加到 ClipboardManager
对象。以下步骤进一步描述了这一点
- 如果您使用 content URI 复制数据,请设置一个内容提供程序。
- 获取系统剪贴板
Kotlin
when(menuItem.itemId) { ... R.id.menu_copy -> { // if the user selects copy // Gets a handle to the clipboard service. val clipboard = getSystemService(Context.CLIPBOARD_SERVICE) as ClipboardManager } }
Java
... // If the user selects copy. case R.id.menu_copy: // Gets a handle to the clipboard service. ClipboardManager clipboard = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE);
-
将数据复制到新的
ClipData
对象-
对于文本
Kotlin
// Creates a new text clip to put on the clipboard. val clip: ClipData = ClipData.newPlainText("simple text", "Hello, World!")
Java
// Creates a new text clip to put on the clipboard. ClipData clip = ClipData.newPlainText("simple text", "Hello, World!");
-
对于 URI
此代码片段通过将记录 ID 编码到提供程序的 content URI 上来构造 URI。此技术在在 URI 上编码标识符部分有更详细的介绍。
Kotlin
// Creates a Uri using a base Uri and a record ID based on the contact's last // name. Declares the base URI string. const val CONTACTS = "content://com.example.contacts" // Declares a path string for URIs, used to copy data. const val COPY_PATH = "/copy" // Declares the Uri to paste to the clipboard. val copyUri: Uri = Uri.parse("$CONTACTS$COPY_PATH/$lastName") ... // Creates a new URI clip object. The system uses the anonymous // getContentResolver() object to get MIME types from provider. The clip object's // label is "URI", and its data is the Uri previously created. val clip: ClipData = ClipData.newUri(contentResolver, "URI", copyUri)
Java
// Creates a Uri using a base Uri and a record ID based on the contact's last // name. Declares the base URI string. private static final String CONTACTS = "content://com.example.contacts"; // Declares a path string for URIs, used to copy data. private static final String COPY_PATH = "/copy"; // Declares the Uri to paste to the clipboard. Uri copyUri = Uri.parse(CONTACTS + COPY_PATH + "/" + lastName); ... // Creates a new URI clip object. The system uses the anonymous // getContentResolver() object to get MIME types from provider. The clip object's // label is "URI", and its data is the Uri previously created. ClipData clip = ClipData.newUri(getContentResolver(), "URI", copyUri);
-
对于 Intent
此代码片段为应用构造一个
Intent
,然后将其放入剪辑对象中Kotlin
// Creates the Intent. val appIntent = Intent(this, com.example.demo.myapplication::class.java) ... // Creates a clip object with the Intent in it. Its label is "Intent" // and its data is the Intent object created previously. val clip: ClipData = ClipData.newIntent("Intent", appIntent)
Java
// Creates the Intent. Intent appIntent = new Intent(this, com.example.demo.myapplication.class); ... // Creates a clip object with the Intent in it. Its label is "Intent" // and its data is the Intent object created previously. ClipData clip = ClipData.newIntent("Intent", appIntent);
-
对于文本
- 将新的剪辑对象放入剪贴板
Kotlin
// Set the clipboard's primary clip. clipboard.setPrimaryClip(clip)
Java
// Set the clipboard's primary clip. clipboard.setPrimaryClip(clip);
复制到剪贴板时提供反馈
用户期望在应用将内容复制到剪贴板时获得视觉反馈。Android 13 及更高版本会自动为用户提供此功能,但在早期版本中必须手动实现。
从 Android 13 开始,当内容添加到剪贴板时,系统会显示标准的视觉确认。新的确认信息会执行以下操作
- 确认内容已成功复制。
- 提供复制内容的预览。

在 Android 12L(API 级别 32)及更低版本中,用户可能不确定是否成功复制了内容或复制了什么内容。此功能标准化了应用在复制后显示的各种通知,并为用户提供了对剪贴板的更多控制。
避免重复通知
在 Android 12L(API 级别 32)及更低版本中,我们建议在用户成功复制后,使用 Toast
或 Snackbar
等微件,通过视觉化的应用内反馈来提醒用户。
为了避免重复显示信息,我们强烈建议对于 Android 13 及更高版本,移除应用内复制后显示的 toast 或 snackbar。


以下是如何实现此功能的示例
fun textCopyThenPost(textCopied:String) { val clipboardManager = getSystemService(CLIPBOARD_SERVICE) as ClipboardManager // When setting the clipboard text. clipboardManager.setPrimaryClip(ClipData.newPlainText ("", textCopied)) // Only show a toast for Android 12 and lower. if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.S_V2) Toast.makeText(context, “Copied”, Toast.LENGTH_SHORT).show() }
向剪贴板添加敏感内容
如果您的应用允许用户将敏感内容(例如密码或信用卡信息)复制到剪贴板,则必须在调用 ClipboardManager.setPrimaryClip()
之前,向 ClipData
中的 ClipDescription
添加一个标志。添加此标志可以防止敏感内容出现在 Android 13 及更高版本中复制内容的视觉确认中。


要标记敏感内容,请向 ClipDescription
添加一个布尔值 extra。所有应用都必须这样做,无论目标 API 级别如何。
// If your app is compiled with the API level 33 SDK or higher. clipData.apply { description.extras = PersistableBundle().apply { putBoolean(ClipDescription.EXTRA_IS_SENSITIVE, true) } } // If your app is compiled with a lower SDK. clipData.apply { description.extras = PersistableBundle().apply { putBoolean("android.content.extra.IS_SENSITIVE", true) } }
从剪贴板粘贴
如前所述,通过获取全局剪贴板对象、获取剪辑对象、查看其数据,并在可能的情况下将数据从剪辑对象复制到您自己的存储中来从剪贴板粘贴数据。本节详细解释了如何粘贴这三种形式的剪贴板数据。
粘贴纯文本
要粘贴纯文本,请获取全局剪贴板并验证它是否可以返回纯文本。然后获取剪辑对象,并使用 getText()
将其文本复制到您自己的存储中,如下面的步骤所述
- 使用
getSystemService(CLIPBOARD_SERVICE)
获取全局ClipboardManager
对象。此外,声明一个全局变量来保存粘贴的文本Kotlin
var clipboard = getSystemService(Context.CLIPBOARD_SERVICE) as ClipboardManager var pasteData: String = ""
Java
ClipboardManager clipboard = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE); String pasteData = "";
- 确定是否需要在当前 Activity 中启用或禁用“粘贴”选项。验证剪贴板是否包含剪辑,并且您可以处理剪辑所表示的数据类型
Kotlin
// Gets the ID of the "paste" menu item. val pasteItem: MenuItem = menu.findItem(R.id.menu_paste) // If the clipboard doesn't contain data, disable the paste menu item. // If it does contain data, decide whether you can handle the data. pasteItem.isEnabled = when { !clipboard.hasPrimaryClip() -> { false } !(clipboard.primaryClipDescription.hasMimeType(MIMETYPE_TEXT_PLAIN)) -> { // Disables the paste menu item, since the clipboard has data but it // isn't plain text. false } else -> { // Enables the paste menu item, since the clipboard contains plain text. true } }
Java
// Gets the ID of the "paste" menu item. MenuItem pasteItem = menu.findItem(R.id.menu_paste); // If the clipboard doesn't contain data, disable the paste menu item. // If it does contain data, decide whether you can handle the data. if (!(clipboard.hasPrimaryClip())) { pasteItem.setEnabled(false); } else if (!(clipboard.getPrimaryClipDescription().hasMimeType(MIMETYPE_TEXT_PLAIN))) { // Disables the paste menu item, since the clipboard has data but // it isn't plain text. pasteItem.setEnabled(false); } else { // Enables the paste menu item, since the clipboard contains plain text. pasteItem.setEnabled(true); }
- 从剪贴板复制数据。代码中的这一位置仅在“粘贴”菜单项启用时才能到达,因此您可以假设剪贴板包含纯文本。您尚不知道它包含一个文本字符串还是指向纯文本的 URI。以下代码片段对此进行了测试,但只显示了处理纯文本的代码
Kotlin
when (menuItem.itemId) { ... R.id.menu_paste -> { // Responds to the user selecting "paste". // Examines the item on the clipboard. If getText() doesn't return null, // the clip item contains the text. Assumes that this application can only // handle one item at a time. val item = clipboard.primaryClip.getItemAt(0) // Gets the clipboard as text. pasteData = item.text return if (pasteData != null) { // If the string contains data, then the paste operation is done. true } else { // The clipboard doesn't contain text. If it contains a URI, // attempts to get data from it. val pasteUri: Uri? = item.uri if (pasteUri != null) { // If the URI contains something, try to get text from it. // Calls a routine to resolve the URI and get data from it. // This routine isn't presented here. pasteData = resolveUri(pasteUri) true } else { // Something is wrong. The MIME type was plain text, but the // clipboard doesn't contain text or a Uri. Report an error. Log.e(TAG,"Clipboard contains an invalid data type") false } } } }
Java
// Responds to the user selecting "paste". case R.id.menu_paste: // Examines the item on the clipboard. If getText() does not return null, // the clip item contains the text. Assumes that this application can only // handle one item at a time. ClipData.Item item = clipboard.getPrimaryClip().getItemAt(0); // Gets the clipboard as text. pasteData = item.getText(); // If the string contains data, then the paste operation is done. if (pasteData != null) { return true; // The clipboard doesn't contain text. If it contains a URI, attempts to get // data from it. } else { Uri pasteUri = item.getUri(); // If the URI contains something, try to get text from it. if (pasteUri != null) { // Calls a routine to resolve the URI and get data from it. // This routine isn't presented here. pasteData = resolveUri(Uri); return true; } else { // Something is wrong. The MIME type is plain text, but the // clipboard doesn't contain text or a Uri. Report an error. Log.e(TAG, "Clipboard contains an invalid data type"); return false; } }
从 content URI 粘贴数据
如果 ClipData.Item
对象包含一个 content URI,并且您确定可以处理其某个 MIME 类型,则创建一个 ContentResolver
并调用相应的内容提供程序方法来检索数据。
以下过程描述了如何根据剪贴板上的 content URI 从内容提供程序获取数据。它会检查提供程序是否提供应用可以使用的 MIME 类型。
- 声明一个全局变量来保存 MIME 类型
Kotlin
// Declares a MIME type constant to match against the MIME types offered // by the provider. const val MIME_TYPE_CONTACT = "vnd.android.cursor.item/vnd.example.contact"
Java
// Declares a MIME type constant to match against the MIME types offered by // the provider. public static final String MIME_TYPE_CONTACT = "vnd.android.cursor.item/vnd.example.contact";
- 获取全局剪贴板。还要获取一个 content resolver,以便您可以访问内容提供程序
Kotlin
// Gets a handle to the Clipboard Manager. val clipboard = getSystemService(Context.CLIPBOARD_SERVICE) as ClipboardManager // Gets a content resolver instance. val cr = contentResolver
Java
// Gets a handle to the Clipboard Manager. ClipboardManager clipboard = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE); // Gets a content resolver instance. ContentResolver cr = getContentResolver();
- 从剪贴板获取 primary clip,并将其内容作为 URI 获取
Kotlin
// Gets the clipboard data from the clipboard. val clip: ClipData? = clipboard.primaryClip clip?.run { // Gets the first item from the clipboard data. val item: ClipData.Item = getItemAt(0) // Tries to get the item's contents as a URI. val pasteUri: Uri? = item.uri
Java
// Gets the clipboard data from the clipboard. ClipData clip = clipboard.getPrimaryClip(); if (clip != 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. Uri pasteUri = item.getUri();
- 通过调用
getType(Uri)
测试 URI 是否为 content URI。如果Uri
未指向有效的内容提供程序,则此方法返回 null。Kotlin
// If the clipboard contains a URI reference... pasteUri?.let { // ...is this a content URI? val uriMimeType: String? = cr.getType(it)
Java
// If the clipboard contains a URI reference... if (pasteUri != null) { // ...is this a content URI? String uriMimeType = cr.getType(pasteUri);
- 测试内容提供程序是否支持应用能够理解的 MIME 类型。如果支持,调用
ContentResolver.query()
获取数据。返回值为一个Cursor
。Kotlin
// If the return value isn't null, the Uri is a content Uri. uriMimeType?.takeIf { // Does the content provider offer a MIME type that the current // application can use? it == MIME_TYPE_CONTACT }?.apply { // Get the data from the content provider. cr.query(pasteUri, null, null, null, null)?.use { pasteCursor -> // If the Cursor contains data, move to the first record. if (pasteCursor.moveToFirst()) { // Get the data from the Cursor here. // The code varies according to the format of the data model. } // Kotlin `use` automatically closes the Cursor. } } } }
Java
// If the return value isn't null, the Uri is a content Uri. if (uriMimeType != null) { // Does the content provider offer a MIME type that the current // application can use? if (uriMimeType.equals(MIME_TYPE_CONTACT)) { // Get the data from the content provider. Cursor pasteCursor = cr.query(uri, null, null, null, null); // If the Cursor contains data, move to the first record. if (pasteCursor != null) { if (pasteCursor.moveToFirst()) { // Get the data from the Cursor here. // The code varies according to the format of the data model. } } // Close the Cursor. pasteCursor.close(); } } } }
粘贴 Intent
要粘贴 Intent,首先获取全局剪贴板。检查 ClipData.Item
对象,查看它是否包含 Intent
。然后调用 getIntent()
将 Intent 复制到您自己的存储中。以下代码片段演示了这一点
Kotlin
// Gets a handle to the Clipboard Manager. val clipboard = getSystemService(Context.CLIPBOARD_SERVICE) as ClipboardManager // Checks whether the clip item contains an Intent by testing whether // getIntent() returns null. val pasteIntent: Intent? = clipboard.primaryClip?.getItemAt(0)?.intent if (pasteIntent != null) { // Handle the Intent. } else { // Ignore the clipboard, or issue an error if // you expect an Intent to be on the clipboard. }
Java
// Gets a handle to the Clipboard Manager. ClipboardManager clipboard = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE); // Checks whether the clip item contains an Intent, by testing whether // getIntent() returns null. Intent pasteIntent = clipboard.getPrimaryClip().getItemAt(0).getIntent(); if (pasteIntent != null) { // Handle the Intent. } else { // Ignore the clipboard, or issue an error if // you expect an Intent to be on the clipboard. }
应用访问剪贴板数据时显示的系统通知
在 Android 12(API 级别 31)及更高版本中,当您的应用调用 getPrimaryClip()
时,系统通常会显示一个 toast 消息。消息中的文本包含以下格式
APP pasted from your clipboard
在以下情况下,系统不会显示 toast 消息
- 从您自己的应用访问
ClipData
。 - 重复访问来自特定应用的
ClipData
。toast 只会在您的应用首次访问来自该应用的数据时显示。 - 检索剪辑对象的元数据,例如通过调用
getPrimaryClipDescription()
而不是getPrimaryClip()
。
使用内容提供程序复制复杂数据
内容提供程序支持复制复杂数据,例如数据库记录或文件流。要复制数据,请将 content URI 放在剪贴板上。然后,粘贴应用从剪贴板获取此 URI,并使用它来检索数据库数据或文件流描述符。
由于粘贴应用只有您的数据的 content URI,因此它需要知道要检索哪一部分数据。您可以通过在 URI 本身编码数据的标识符来提供此信息,或者可以提供一个唯一的 URI,该 URI 返回您要复制的数据。选择哪种技术取决于您数据的组织方式。
以下部分描述了如何设置 URI、提供复杂数据和提供文件流。这些描述假设您熟悉内容提供程序设计的通用原则。
在 URI 上编码标识符
使用 URI 将数据复制到剪贴板的一个有用技术是在 URI 本身编码数据的标识符。然后您的内容提供程序可以从 URI 获取标识符并使用它来检索数据。粘贴应用不必知道标识符存在。它只需要从剪贴板获取您的“引用”(URI 加标识符),将其提供给您的内容提供程序,然后取回数据。
通常,您通过将标识符连接到 URI 的末尾来将其编码到 content URI 上。例如,假设您将提供程序 URI 定义为以下字符串
"content://com.example.contacts"
如果您想将名称编码到此 URI 上,请使用以下代码片段
Kotlin
val uriString = "content://com.example.contacts/Smith" // uriString now contains content://com.example.contacts/Smith. // Generates a uri object from the string representation. val copyUri = Uri.parse(uriString)
Java
String uriString = "content://com.example.contacts" + "/" + "Smith"; // uriString now contains content://com.example.contacts/Smith. // Generates a uri object from the string representation. Uri copyUri = Uri.parse(uriString);
如果您已经在使用内容提供程序,您可能希望添加一个新的 URI 路径,该路径指示此 URI 用于复制。例如,假设您已经有以下 URI 路径
"content://com.example.contacts/people" "content://com.example.contacts/people/detail" "content://com.example.contacts/people/images"
您可以添加另一个用于复制 URI 的路径
"content://com.example.contacts/copying"
然后,您可以通过模式匹配来检测“复制”URI,并使用专门用于复制和粘贴的代码来处理它。
如果您已经使用内容提供程序、内部数据库或内部表来组织数据,通常会使用编码技术。在这些情况下,您有多个想要复制的数据片段,并且可能每个片段都有一个唯一的标识符。为了响应粘贴应用的查询,您可以根据其标识符查找数据并返回。
如果您没有多个数据片段,则可能不需要编码标识符。您可以使用您的提供程序独有的 URI。为了响应查询,您的提供程序会返回它当前包含的数据。
复制数据结构
将内容提供程序设置为 ContentProvider
组件的子类,以用于复制和粘贴复杂数据。对您放在剪贴板上的 URI 进行编码,使其指向您想要提供的确切记录。此外,请考虑您应用的现有状态
- 如果您已经有内容提供程序,您可以增加其功能。您可能只需要修改其
query()
方法来处理来自想要粘贴数据的应用的 URI。您可能希望修改该方法来处理“复制”URI 模式。 - 如果您的应用维护内部数据库,您可能希望将此数据库迁移到内容提供程序中,以便于从中复制。
- 如果您没有使用数据库,您可以实现一个简单的内容提供程序,其唯一目的是向从剪贴板粘贴的应用提供数据。
在内容提供程序中,至少要覆盖以下方法
-
query()
- 粘贴应用假定它们可以使用您放在剪贴板上的 URI 调用此方法来获取您的数据。为了支持复制,请让此方法检测包含特殊“复制”路径的 URI。然后您的应用可以创建一个“复制”URI 放在剪贴板上,其中包含复制路径和指向您要复制的确切记录的指针。
-
getType()
- 此方法必须返回您打算复制的数据的 MIME 类型。
newUri()
方法会调用getType()
将 MIME 类型放入新的ClipData
对象中。复杂数据的 MIME 类型在内容提供程序中进行了介绍。
您不需要拥有任何其他内容提供程序方法,例如 insert()
或 update()
。粘贴应用只需要获取您支持的 MIME 类型并从您的提供程序复制数据。如果您已经有这些方法,它们不会干扰复制操作。
以下代码片段演示了如何设置您的应用以复制复杂数据
-
在应用的全局常量中,声明一个基本 URI 字符串和一个用于标识您用于复制数据的 URI 字符串的路径。还要声明复制数据的 MIME 类型。
Kotlin
// Declares the base URI string. private const val CONTACTS = "content://com.example.contacts" // Declares a path string for URIs that you use to copy data. private const val COPY_PATH = "/copy" // Declares a MIME type for the copied data. const val MIME_TYPE_CONTACT = "vnd.android.cursor.item/vnd.example.contact"
Java
// Declares the base URI string. private static final String CONTACTS = "content://com.example.contacts"; // Declares a path string for URIs that you use to copy data. private static final String COPY_PATH = "/copy"; // Declares a MIME type for the copied data. public static final String MIME_TYPE_CONTACT = "vnd.android.cursor.item/vnd.example.contact";
- 在用户复制数据的 Activity 中,设置将数据复制到剪贴板的代码。为了响应复制请求,将 URI 放在剪贴板上。
Kotlin
class MyCopyActivity : Activity() { ... when(item.itemId) { R.id.menu_copy -> { // The user has selected a name and is requesting a copy. // Appends the last name to the base URI. // The name is stored in "lastName". uriString = "$CONTACTS$COPY_PATH/$lastName" // Parses the string into a URI. val copyUri: Uri? = Uri.parse(uriString) // Gets a handle to the clipboard service. val clipboard = getSystemService(Context.CLIPBOARD_SERVICE) as ClipboardManager val clip: ClipData = ClipData.newUri(contentResolver, "URI", copyUri) // Sets the clipboard's primary clip. clipboard.setPrimaryClip(clip) } }
Java
public class MyCopyActivity extends Activity { ... // The user has selected a name and is requesting a copy. case R.id.menu_copy: // Appends the last name to the base URI. // The name is stored in "lastName". uriString = CONTACTS + COPY_PATH + "/" + lastName; // Parses the string into a URI. Uri copyUri = Uri.parse(uriString); // Gets a handle to the clipboard service. ClipboardManager clipboard = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE); ClipData clip = ClipData.newUri(getContentResolver(), "URI", copyUri); // Sets the clipboard's primary clip. clipboard.setPrimaryClip(clip);
-
在您的内容提供程序的全局作用域中,创建一个 URI 匹配器,并添加一个与您放在剪贴板上的 URI 匹配的 URI 模式。
Kotlin
// A Uri Match object that simplifies matching content URIs to patterns. private val sUriMatcher = UriMatcher(UriMatcher.NO_MATCH).apply { // Adds a matcher for the content URI. It matches. // "content://com.example.contacts/copy/*" addURI(CONTACTS, "names/*", GET_SINGLE_CONTACT) } // An integer to use in switching based on the incoming URI pattern. private const val GET_SINGLE_CONTACT = 0 ... class MyCopyProvider : ContentProvider() { ... }
Java
public class MyCopyProvider extends ContentProvider { ... // A Uri Match object that simplifies matching content URIs to patterns. private static final UriMatcher sURIMatcher = new UriMatcher(UriMatcher.NO_MATCH); // An integer to use in switching based on the incoming URI pattern. private static final int GET_SINGLE_CONTACT = 0; ... // Adds a matcher for the content URI. It matches // "content://com.example.contacts/copy/*" sUriMatcher.addURI(CONTACTS, "names/*", GET_SINGLE_CONTACT);
-
设置
query()
方法。此方法可以处理不同的 URI 模式,具体取决于您的编码方式,但此处仅显示剪贴板复制操作的模式。Kotlin
// Sets up your provider's query() method. override fun query( uri: Uri, projection: Array<out String>?, selection: String?, selectionArgs: Array<out String>?, sortOrder: String? ): Cursor? { ... // When based on the incoming content URI: when(sUriMatcher.match(uri)) { GET_SINGLE_CONTACT -> { // Queries and returns the contact for the requested name. Decodes // the incoming URI, queries the data model based on the last name, // and returns the result as a Cursor. } } ... }
Java
// Sets up your provider's query() method. public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { ... // Switch based on the incoming content URI. switch (sUriMatcher.match(uri)) { case GET_SINGLE_CONTACT: // Queries and returns the contact for the requested name. Decodes the // incoming URI, queries the data model based on the last name, and // returns the result as a Cursor. ... }
-
设置
getType()
方法以返回适用于复制数据的 MIME 类型Kotlin
// Sets up your provider's getType() method. override fun getType(uri: Uri): String? { ... return when(sUriMatcher.match(uri)) { GET_SINGLE_CONTACT -> MIME_TYPE_CONTACT ... } }
Java
// Sets up your provider's getType() method. public String getType(Uri uri) { ... switch (sUriMatcher.match(uri)) { case GET_SINGLE_CONTACT: return (MIME_TYPE_CONTACT); ... } }
从 content URI 粘贴数据部分描述了如何从剪贴板获取 content URI,并使用它来获取和粘贴数据。
复制数据流
您可以将大量文本和二进制数据作为流进行复制和粘贴。数据可以采用以下形式
- 存储在实际设备上的文件
- 来自套接字的流
- 存储在提供程序底层数据库系统中的大量数据
数据流的内容提供程序使用文件描述符对象(例如 AssetFileDescriptor
)提供对其数据的访问,而不是 Cursor
对象。粘贴应用使用此文件描述符读取数据流。
要设置您的应用以使用提供程序复制数据流,请按照以下步骤操作
- 为您要放在剪贴板上的数据流设置一个 content URI。执行此操作的选项包括
- 如在 URI 上编码标识符部分所述,将数据流的标识符编码到 URI 上,然后在您的提供程序中维护一个包含标识符和相应流名称的表。
- 直接在 URI 上编码流名称。
- 使用一个唯一的 URI,该 URI 始终从提供程序返回当前流。如果您使用此选项,请记住在您使用 URI 将流复制到剪贴板时,始终更新您的提供程序指向不同的流。
- 为您计划提供的每种数据流类型提供 MIME 类型。粘贴应用需要此信息来确定它们是否可以粘贴剪贴板上的数据。
- 实现
ContentProvider
返回流的文件描述符的方法之一。如果您在 content URI 上编码了标识符,请使用此方法来确定要打开哪个流。 - 要将数据流复制到剪贴板,构造 content URI 并将其放在剪贴板上。
要粘贴数据流,应用从剪贴板获取剪辑,获取 URI,并在调用打开流的 ContentResolver
文件描述符方法中使用它。 ContentResolver
方法调用相应的 ContentProvider
方法,并将 content URI 传递给它。您的提供程序将文件描述符返回给 ContentResolver
方法。然后粘贴应用负责从流中读取数据。
以下列表显示了内容提供程序最重要的文件描述符方法。这些方法中的每一个都有一个相应的 ContentResolver
方法,其方法名后附加了字符串 "Descriptor"。例如,ContentResolver
中与 openAssetFile()
对应的方法是 openAssetFileDescriptor()
。
-
openTypedAssetFile()
-
此方法返回一个 asset 文件描述符,但前提是提供程序支持提供的 MIME 类型。调用者(即执行粘贴的应用)提供一个 MIME 类型模式。将 URI 复制到剪贴板的应用的内容提供程序如果在能够提供该 MIME 类型的情况下,则返回
AssetFileDescriptor
文件句柄;否则抛出异常。此方法处理文件的子部分。您可以使用它来读取内容提供程序已复制到剪贴板的资源。
-
openAssetFile()
- 此方法是
openTypedAssetFile()
的更一般形式。它不对允许的 MIME 类型进行过滤,但可以读取文件的子部分。 -
openFile()
- 这是
openAssetFile()
的更一般形式。它不能读取文件的子部分。
您可以选择将 openPipeHelper()
方法与您的文件描述符方法一起使用。这允许粘贴应用在后台线程中使用管道读取流数据。要使用此方法,请实现 ContentProvider.PipeDataWriter
接口。
设计有效的复制和粘贴功能
为了为您的应用设计有效的复制和粘贴功能,请记住以下几点
- 任何时候,剪贴板上只有一个剪辑。系统中任何应用的新复制操作都会覆盖之前的剪辑。由于用户可能会离开您的应用并在返回前进行复制,您不能假设剪贴板包含用户之前在您的应用中复制的剪辑。
- 每个剪辑包含多个
ClipData.Item
对象的目的是支持复制和粘贴多个选择,而不是以不同形式引用单个选择。通常,您希望剪辑中的所有ClipData.Item
对象都具有相同的形式。也就是说,它们必须都是纯文本、content URI 或Intent
,而不能混合。 - 提供数据时,您可以提供不同的 MIME 表示形式。将您支持的 MIME 类型添加到
ClipDescription
中,然后在您的内容提供程序中实现这些 MIME 类型。 - 从剪贴板获取数据时,您的应用负责检查可用的 MIME 类型,然后决定使用哪个(如果有)。即使剪贴板上有剪辑,并且用户请求粘贴,您的应用也不强制执行粘贴。如果 MIME 类型兼容,则执行粘贴。您可以使用
coerceToText()
将剪贴板上的数据强制转换为文本。如果您的应用支持多种可用的 MIME 类型,您可以让用户选择使用哪一种。