以下是我遇到的问题类型的示例。我在 pojo 中有数据,需要在 textview 中显示...数据有伪代码,用 [p] 表示每个段落
当它们显示在文本视图中时,我想以某种方式将 [p] 解析为段落。这可以做到吗?有什么东西可以代替 [p] 来在 textview 中创建一个新段落吗?
Question question = new Question();
question.setText("Here is the first paragraph.[p] And this should be the second.");
TextView view = (TextView) findViewById(R.id.qtext);
view.setText(question.getParsedText());