gpt4 book ai didi

android - 我无法让 setSpan 工作

转载 作者:行者123 更新时间:2023-11-29 17:16:10 26 4
gpt4 key购买 nike

我有一个字符串,例如:“@user 喜欢你的照片!2 小时前”,细字体。

这个字符串由三部分组成;

1: @user -> 它应该是 typeface.normal 并且可以点击

2:喜欢你的照片! -> 这保持不变(薄和黑色)

3: 2 小时前 -> 这应该是灰色的。

Spannable spannedTime = new SpannableString(time);
Spannable clickableUsername = new SpannableString(username);
clickableUsername.setSpan(new StyleSpan(Typeface.NORMAL), 0, clickableUsername.length(), 0); // this is for 1st part to make it normal typeface
spannedTime.setSpan(new BackgroundColorSpan(Color.GRAY), 0, spannedTime.length(), 0); // this is for 3rd part to make it gray

clickableUsername.setSpan(new ClickableSpan() {
@Override
public void onClick(View view) {
CallProfileActivity();
}
}, 0, clickableUsername.length(), Spanned.SPAN_EXCLUSIVE_INCLUSIVE);// this is for 1st part to make it clickable

this.setText(clickableUsername + " " + notificationBody + " " + spannedTime);

但它们都没有任何效果。

最佳答案

Java 编译器不知道 Spannable。当你做的时候

this.setText(clickableUsername + " " + notificationBody + " " + spannedTime);

java 创建一个 String 连接所有 SpannableString

要像您打算的那样创建一个可生成的字符串,您应该使用 SpannableStringBuilder .

SpannableStringBuilder spannable = new SpannableStringBuilder();
spannable.append(clickableUsername, new StyleSpan(Typeface.NORMAL), 0);
spannable.append(' ').append(notificationBody).append(' ');
spannable.append(time, new BackgroundColorSpan(Color.GRAY), 0);
spannable.setSpan(new ClickableSpan() {
@Override
public void onClick(View view) {
CallProfileActivity();
}
}, 0, username.length(), Spanned.SPAN_EXCLUSIVE_INCLUSIVE);
this.setText(spannable);

关于android - 我无法让 setSpan 工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38839477/

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