在android中使用edittext作为html编辑器

时间:2012-03-14 10:39:32

标签: java android

我正在创建一个应用程序,提供撰写文章和提交的选项。

我想向用户提供所有html选项,以便用户可以将文本的一部分加粗,斜体,带下划线等。 我用谷歌搜索但没有找到适合Android的任何选项或任何html工具。

寻找建议。

1 个答案:

答案 0 :(得分:4)

您可以使用以下内容:

这里textDisplayedBottom是一个TextView。

actualStringToDisplay="font COLOR=\"RED\"><b>"+yourString</b></font>"; 
textDisplayedBottom.setText(Html.fromHtml(actualStringToDisplay));

希望这有帮助。

编辑1:对于EditText

对于提供粗体斜体下划线选项的editext,您始终可以使用Spannable来实现它

// Get our EditText object.
EditText vw = (EditText)findViewById(R.id.text);

// Set the EditText's 
text.vw.setText("Italic, highlighted, bold.");

// If this were just a TextView, we could do:
// vw.setText("Italic, highlighted, bold.", TextView.BufferType.SPANNABLE);
// to force it to use Spannable storage so styles can be attached.
// Or we could specify that in the XML.
// Get the EditText's internal text storage

Spannable str = vw.getText();

// Create our span sections, and assign a format to each.

str.setSpan(new StyleSpan(android.graphics.Typeface.ITALIC), 0, 7,Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
str.setSpan(new BackgroundColorSpan(0xFFFFFF00), 8, 19, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
str.setSpan(new StyleSpan(android.graphics.Typeface.BOLD), 21, str.length() - 1, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

您可以在此处找到详细信息

http://developer.android.com/resources/faq/commontasks.html#selectingtext