2

现在我正在编写简单的笔记应用程序。我需要在 EditText 中显示格式化的单独选定文本。

我试过了,

EditText et = (EditText)findViewById(R.id.edittext);
String string;
int startSelection = et.getSelectionStart();
int endSelection = et.getSelectionEnd();

string = et.getText().toString();
string.substring(startSelection, endSelection);



Spanned s = Html.fromHtml("<font color=\"red\">" + string + "</font>");

et.setText(s);

此解决方案仅显示单独的选定文本。但我需要在其他文本中显示格式化文本。我不知道。

UPD:格式化发生,当用户点击按钮时。

4

3 回答 3

2

尝试这个

EditText text = new EditText(this); 
text.setText(Html.fromHtml(html));
text.setMovementMethod(LinkMovementMethod.getInstance());
于 2012-07-06T13:45:13.210 回答
1

尝试使用这个

String string = et.getText().toString();
    String selectedString = string.substring(startSelection, endSelection);

    Spanned s = Html.fromHtml(string.replace(selectedString, "<font color=\"red\">" + selectedString + "</font>"));
于 2012-07-06T13:33:53.933 回答
0

如果您谈论格式化文本,您总是可以这样做

EditText et = new EditText(this);
et.setText(Html.fromHtml("Simple Text <B>Formatted Text</B> Simple Text Again"));

如果你想要linkify文本的特定部分,然后使用这个博客这样做

    EditText mTextSample = new EditText(this);
    String text = "click to see stackoverflow.com here";   
    mTextSample.setText(text);        
    Pattern pattern = Pattern.compile("stackoverflow.com");   
    Linkify.addLinks(mTextSample, pattern, "http://"); 
于 2012-07-06T13:35:21.187 回答