TextView内可以有多种样式吗?
是否可以在TextView中为不同的文本设置多种样式? 例如,我将文本设置如下: tv.setText(line1 + "\n" + line2 + "\n" + word1 + "\t" + word2 + "\t" + word3); 每个文本元素是否可以具有不同的样式?例如,line1粗体,word1斜体等。 开发人员指南的“ 常见任务”和“如何在Android中实现它们”包括选择,突出显示或设置文本的样式: // 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: // …