gpt4 book ai didi

安卓 Spannable : Copy/Cut custom Span in Edittext only Pastes the base class

转载 作者:搜寻专家 更新时间:2023-11-01 09:25:08 27 4
gpt4 key购买 nike

我正在尝试扩展一些 Spans,以便它们可能变得复合(以避免必须在一段文本上设置多个 span),和/或存储更多关于它们自己的信息(例如,“types”和“ids”,等等)

一切都按预期进行,直到我复制/剪切,然后粘贴文本。在粘贴操作之后,自定义 span 将失去所有自定义,只保留 base-span 特定样式。

例如,如果我扩展 BackgroundColorSpan始终应用红色文本颜色,它会起作用。设置以下 Extended BackgroundColorSpan对任何文本都会正确设置背景,并且文本会根据需要显示为红色。这是跨度的代码:

public class ExtendedBackgoundColorSpan extends BackgroundColorSpan {

private final int fgColor = Color.parseColor("#FF0000");

public ExtendedBackgoundColorSpan(int color) {
super(color);
}

public ExtendedBackgoundColorSpan(Parcel src) {
super(src);
}

/*Make text colour red*/
@Override
public void updateDrawState(TextPaint ds) {
super.updateDrawState(ds);
ds.setColor(fgColor);
}
}

一切都很好,直到我复制/剪切然后粘贴跨越的文本。然后它将失去其“红色”,但保留背景色。此外,粘贴的跨度被识别为普通 BackgroundColorSpan ,而不是 ExtendedBackgroundColorSpan .

尝试覆盖 writeToParcel(Parcel dest, int flags)来自基类,具有可设置(非最终)fgColor ,以及(也设置它的构造函数),但没有任何效果。

当我尝试创建带有额外信息(如特殊标签或 ID)的自定义跨度时,我也遇到了这种行为。粘贴时会丢失额外的信息,甚至跨度的扩展类型。

我错过了什么?


编辑: 这正是我所缺少的。以下来自安卓开发者的ClipData.Item here :

Description of a single item in a ClipData.

The types than an individual item can currently contain are:

  • Text: a basic string of text. This is actually a CharSequence, so it can be formatted text supported by corresponding Android built-in style spans. (Custom application spans are not supported and will be stripped when transporting through the clipboard.)

(强调我的。)

我会保留已接受的答案,因为那是我指向正确方向的原因。

<rant> (意思是查看我可能不能能做什么,因为 Android 团队中的某个人认为我不应该这样做。我最终得到了自定义 EditText,具有自定义粘贴逻辑,并且复制/剪切/粘贴操作的回调,只是为了实现本来应该是操作系统工作的事情。整个平台感觉就像一个巨大的黑客。) </rant>

最佳答案

您启发了我使用 Spannables 的乐趣。没有机会扩展 BackgroundColorSpan 并实现自己的 ParcelableSpan。框架不允许,检查 ParcelableSpan reference .否则我试图解决您的复制跨度问题,答案很简单:

 SpannableString spannableString = new SpannableString(firstEditText.getText().toString());
spannableString.setSpan(new BackgroundColorSpan(Color.GREEN), 0, spannableString.length(), 0);
spannableString.setSpan(new ForegroundColorSpan(Color.RED), 0, spannableString.length(), 0);

字符串可以复制粘贴包含在设置跨度之前,我已经检查过了。您可以将这两个跨度连接到一个类并将其与其他颜色一起使用。

关于安卓 Spannable : Copy/Cut custom Span in Edittext only Pastes the base class,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51285321/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com