gpt4 book ai didi

android - 有什么方法可以直接将 span 设置为 spannable 文本?

转载 作者:太空狗 更新时间:2023-10-29 13:29:16 24 4
gpt4 key购买 nike

这可能是个错误,但我需要知道...:)我正在开发一个 android 应用程序,在我想在单个 TextView 中显示两个字体并找到 this One very useful,A custom typeface span that extends typeface span ,根据我的理解,我们正在创建一个 spannable,如下使用两个词

String firstWord = "first ";
String secondWord = "second";
// Create a new spannable with the two strings
Spannable spannable = new SpannableString(firstWord+secondWord);

然后像这样使用我们的自定义跨度为该词设置两个字体

// Set the custom typeface to span over a section of the spannable object
spannable.setSpan( new CustomTypefaceSpan("sans-serif",CUSTOM_TYPEFACE), 0,
firstWord.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
spannable.setSpan( new CustomTypefaceSpan("sans-serif",SECOND_CUSTOM_TYPEFACE), rstWord.length(), secondWord.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

现在我的问题是,我有一个大量文本,所以如果我能够将跨度直接放在我的文本中,这对我们来说会更容易是否可以像我们放置<b>bold </b> 一样将跨度直接放置到文本中?因为我需要使用我的自定义字体跨度,如 <typeface1> sample </typeface1> <typeface2> Doc </typeface2> .

我需要的是,将设置的跨度对文本所做的更改直接应用于文本

这可能吗,如果可能的话,我需要在我的文本中写成跨度,我怎样才能做到这一点..还是我完全错了?

谢谢大家

最佳答案

很晚才回答,但你要求的很简单。

例如,假设我们要将引号之间的所有内容更改为斜体。

    String s =  "\"Hello my name is Edward\" Hola, my nombre es Edward";        
Pattern p = Pattern.compile("\"([^\"]*)\"");
Matcher m = p.matcher(text);
Spannable spannable = new SpannableString(s);
while (m.find()) {
int textLocation = text.indexOf(m.group(1));

// Set the custom typeface to span over a section of the spannable object
spannable.setSpan( new CustomTypefaceSpan("sans-serif",my_italic_font),
textLocation-1, textLocation + m.group(1).length(),spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

// Set the text of a textView with the spannable object
TextView textbox = (TextView) v.findViewById(R.id.cardtextbox);

}
textbox.setText( spannable );

s 的结果会是

“你好,我叫爱德华” Hola,我的名字是爱德华

现在您可以使用正则表达式模式来代替引号,例如 <b>bold </b> ;

之后您还可以使用简单的 .replace() 删除标签;

关于android - 有什么方法可以直接将 span 设置为 spannable 文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17744664/

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