为了账号安全,请及时绑定邮箱和手机立即绑定

如何将文本效果应用于 { } 大括号内的单词

如何将文本效果应用于 { } 大括号内的单词

胡说叔叔 2021-11-03 14:55:58
我有来自 SQLite 数据库的文本以这种形式发送到我的 onBindViewHolder:你好,我是 {Alex}。我希望能够调整{}内文本的大小或颜色,并在输出中隐藏那些{}花括号。所以最后希望有这样的文字:你好,我是亚历克斯我第一次遇到与 Regex 相关的事情,谁能给我一步一步地指导如何实现这一点。但我不明白在我的情况下我应该如何处理“ (?<=[)(.*?)(?=]) ”。现在我的 onBindViewHolder 看起来像这样:public void onBindViewHolder(final MyViewHolder holder, final int position) {    final Question question = questionList.get(position);    holder.tvQuestion.setText(question.getQuestion());//  holder.tvQuestion.setTextColor(Color.parseColor("#ff0099cc"));
查看完整描述

1 回答

?
慕容3067478

TA贡献1773条经验 获得超3个赞

我不擅长正则表达式。但这里是您问题的答案,可以让您获得所需的结果(获取表达式文本并相应地对其进行格式化)。


public CharSequence getFormattedQuestion(Context context, String originalQues, @ColorRes int colorToSet, @DimenRes int textSize) {


    // First we check if the question has the expression

    if (originalQues == null || !originalQues.contains("{") || !originalQues.contains("}")) {

        return originalQues;

    }


    // Then we break the original text into parts


    int startIndex = originalQues.indexOf("{");

    int endIndex = originalQues.indexOf("}");


    // 1) The text before the expression

    String leftPart = startIndex>0 ? originalQues.substring(0, startIndex) : "";


    // 2) The text after the expression (if there is any)

    String rightPart = endIndex == originalQues.length()-1 ? "" : originalQues.substring(endIndex+1);


    // 3) The expression text

    String midPart = originalQues.substring(startIndex+1, endIndex);


    // 4) Format the mid part with the give color (colorToSet) and size (textSize)

    SpannableString spannableMid = new SpannableString(midPart);

    spannableMid.setSpan(new ForegroundColorSpan(ContextCompat.getColor(context, colorToSet)), 0, midPart.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

    spannableMid.setSpan(new AbsoluteSizeSpan(context.getResources().getDimensionPixelSize(textSize)), 0, midPart.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);



    // check if there is any left part; if so, add it with mid

    CharSequence leftAndMid = leftPart.length()>0 ? TextUtils.concat(leftPart, " ", spannableMid) : spannableMid;


    // Check if there is any right part else return the left and mid

    return rightPart.length()>0 ? TextUtils.concat(leftAndMid, " ", rightPart) : leftAndMid;

}

所以基本上我们将原始问题分成 3 个部分。第一部分,表达前的文字。第 2 部分表达式文本。第 3 部分表达式后的文本。然后我们使用SpannableString. 然后我们通过组合所有三个来返回一个新文本。

然后你可以像这样使用它


CharSequence ques = getFormattedQuestion(holder.itemView.getContext(), question.getQuestion(), R.color.blue, R.dimen.text_size);

holder.tvQuestion.setText(ques);


查看完整回答
反对 回复 2021-11-03
  • 1 回答
  • 0 关注
  • 123 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信