如何将CSS样式代码应用到Android中的自定义TextView中

时间:2014-12-01 06:07:50

标签: android css textview stylesheet android-custom-view

我想将CSS代码应用于我的自定义Textview。

我曾尝试做过,

textview.setText(Html.fromHtml("database content will be here in HTML format"));

我想在此显示CSS代码。

2 个答案:

答案 0 :(得分:2)

你应该试试这个:

textview.setText(Html.fromHtml("<p font-color="blue">database content will be here in HTML format</p>"));

答案 1 :(得分:1)

你可以使用这样的东西可以帮助你。

textview.setText(Html.fromHtml("<p font-color="blue">database content will be here in HTML format</p>"));