Android Spannable:Copy/Cut 仅在 Edittext 中自定义 Span 粘贴基础 class
Android Spannable: Copy/Cut custom Span in Edittext only Pastes the base class
我正在尝试扩展一些 Spans 以便它们可能变得复合(以避免必须在一段文本上设置多个 span),and/or 存储更多关于它们自己的信息(比如,“类型”和“ids”等)
一切正常,直到我 Copy/Cut,然后粘贴文本。粘贴操作后,自定义 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);
}
}
一切都很好,直到我 Copy/Cut 然后粘贴跨越文本。然后它将失去其“红色”,但保留背景颜色。此外,粘贴的跨度被识别为纯 BackgroundColorSpan
,而不是 ExtendedBackgroundColorSpan
。
尝试使用可设置(非最终)fgColor
从基础 class 覆盖 writeToParcel(Parcel dest, int flags)
,以及(也设置它的构造函数),但没有任何效果。
当我尝试创建带有额外信息(如特殊标签或 ID)的自定义跨度时,我也遇到了这种行为。粘贴时会丢失额外的信息,甚至跨度的扩展类型。
我错过了什么?
编辑: 这正是我所缺少的。以下来自Android开发者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
、自定义粘贴逻辑和 Copy/Cut/粘贴操作的回调,只是为了实现本应由 OS 完成的工作第一名。整个平台感觉就像一个巨大的黑客。)</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);
字符串可以复制粘贴包含在设置跨度之前,我已经检查过了。您可以将这两个跨度连接到一个 class 并将其与其他颜色一起使用。
我正在尝试扩展一些 Spans 以便它们可能变得复合(以避免必须在一段文本上设置多个 span),and/or 存储更多关于它们自己的信息(比如,“类型”和“ids”等)
一切正常,直到我 Copy/Cut,然后粘贴文本。粘贴操作后,自定义 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);
}
}
一切都很好,直到我 Copy/Cut 然后粘贴跨越文本。然后它将失去其“红色”,但保留背景颜色。此外,粘贴的跨度被识别为纯 BackgroundColorSpan
,而不是 ExtendedBackgroundColorSpan
。
尝试使用可设置(非最终)fgColor
从基础 class 覆盖 writeToParcel(Parcel dest, int flags)
,以及(也设置它的构造函数),但没有任何效果。
当我尝试创建带有额外信息(如特殊标签或 ID)的自定义跨度时,我也遇到了这种行为。粘贴时会丢失额外的信息,甚至跨度的扩展类型。
我错过了什么?
编辑: 这正是我所缺少的。以下来自Android开发者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
、自定义粘贴逻辑和 Copy/Cut/粘贴操作的回调,只是为了实现本应由 OS 完成的工作第一名。整个平台感觉就像一个巨大的黑客。)</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);
字符串可以复制粘贴包含在设置跨度之前,我已经检查过了。您可以将这两个跨度连接到一个 class 并将其与其他颜色一起使用。