gpt4 book ai didi

android - 如何在 TextView 的文本上设置多个跨度(可点击和粗体)

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:30:08 25 4
gpt4 key购买 nike

    mSpannableString = new SpannableString("12:00PM");

mSpannableString.setSpan(clickableSpan, 0, 7, 0);
mSpannableString.setSpan(new StyleSpan(Typeface.BOLD), 0, 7, 0);

TextView textView = new TextView(getContext());
textView.setMovementMethod(LinkMovementMethod.getInstance());
textView.setText(mSpannableString);

mCancelFrom.setText(getString(R.string.cancel_from_text) + " " + mSpannableString);

我需要将文本设置为粗体并使其可点击。上面的代码我已经写在一个对话框中。正在显示字符串“12:00PM”。但它没有大胆的效果,也不可点击。你能帮我解决这个问题吗?

最佳答案

试试这个,它可能对你有帮助

SpannableString ss = new SpannableString("12:00PM");
ClickableSpan clickableSpan = new ClickableSpan() {
@Override
public void onClick(View textView) {
startActivity(new Intent(SendSMS.this, SendSMS.class));
}
@Override
public void updateDrawState(TextPaint ds) {
super.updateDrawState(ds);
ds.setUnderlineText(false);
}
};
ss.setSpan(new StyleSpan(Typeface.BOLD), 0, 7, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
ss.setSpan(clickableSpan, 0, 7, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
mCancelFrom.setText(getString(R.string.cancel_from_text) + " " + ss);

关于android - 如何在 TextView 的文本上设置多个跨度(可点击和粗体),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38874861/

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