我正在尝试将段落的标题设置为斜体(如果可能,将其设置为粗体),但并没有从中获得乐趣。这是我到目前为止所拥有的:
...sound and active.\n\n HEAD \n The skull is broad and...
所以我想做的是将“HEAD”设置为斜体和粗体。
完整代码:
FlowTextView tv1 = (FlowTextView) findViewById(R.id.tv4);
Spanned spannable1 = Html.fromHtml("<html ... </html>");
tv1.setText(spannable1); // using html
tv1.setText("...sound and active.\n\n HEAD \n The skull is broad and....
tv1.setTextSize(20);
tv1.invalidate();
谁能帮我?