在 Uno 平台上使用剪贴板

Using clipboard on Uno Platform

我正在尝试从 Android 上的剪贴板获取内容:

DataPackageView dataPackageView = Clipboard.GetContent();

uwp 和 android 上都存在命名空间和方法。但在后者中,有一个未实现的异常,当 运行 代码时。

据我所知,剪贴板应该在uno平台上实现。我做错了什么吗?

Clipboard.GetContentimplemented in Uno 3.0 (still in development as of 2020/07/26), and you can use it as follows:

private async void Paste()
{
   var content = Clipboard.GetContent();
   Text = await content.GetTextAsync();
}