您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
在Android中,要实现EditText的文本高亮显示,可以使用SpannableString和BackgroundColorSpan
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="这是一个示例文本。请在这里输入需要高亮的文本。" />
import android.graphics.Color;
import android.os.Bundle;
import android.text.Editable;
import android.text.Spannable;
import android.text.SpannableString;
import android.text.TextWatcher;
import android.text.style.BackgroundColorSpan;
import android.widget.EditText;
import androidx.appcompat.app.AppCompatActivity;
public class MainActivity extends AppCompatActivity {
private EditText editText;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
editText = findViewById(R.id.editText);
editText.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
@Override
public void afterTextChanged(Editable s) {
highlightText();
}
});
}
private void highlightText() {
String text = editText.getText().toString();
String keyword = "高亮"; // 这里可以替换为需要高亮的关键词
int index = text.indexOf(keyword);
SpannableString spannableString = new SpannableString(text);
while (index != -1) {
spannableString.setSpan(new BackgroundColorSpan(Color.YELLOW), index, index + keyword.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
index = text.indexOf(keyword, index + 1);
}
editText.setText(spannableString);
editText.setSelection(editText.getText().length());
}
}
在这个示例中,我们为EditText设置了一个文本变化监听器。当文本发生变化时,会调用highlightText()
方法来高亮显示关键词。这里我们使用了BackgroundColorSpan
来设置高亮的背景颜色。你可以根据需要修改关键词和颜色。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。